@import url("shared.css");

main {
    margin: 0 auto;
    padding-top: 20px;
    max-width: 600px;
}
  
h2 {
    font-size: 2em;
    margin-top: 40px;
}

.intro-section {
    background-color: #f7f7f7;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}
  
.intro-text {
    font-size: 16px;
    margin-top: 20px;
}
  
form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 20px;
}
  
label {
    font-size: 1.2em;
    margin-bottom: 10px;
}
  
input, textarea {
    font-size: 1em;
    padding: 5px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}
  
button[type="submit"] {
    background-color: #0A99FF;
    border: none;
    color: white;
    font-size: 1.2em;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}
  
button[type="submit"]:hover {
    background-color: #1E90FF;
}
  