.container {
    margin-left: 250px; 
    margin-right: 300px;
}

body {
    background-color: white;
    margin: 0;
    padding: 0;
    }

main {
    font-family: Arial, sans-serif;
}    
    
.title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 127px 0px 50px;
}

.line {
    width: 60px;
    border-bottom: 2px solid hsl(180, 92%, 38%);
    margin-top: 5px;
}

.container {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center; 
    align-items: flex-start; 
    min-height: 50vh; 
    padding: 20px;
}

.section {
    width: 80%; 
    padding: 30px;
    justify-content: center;
    box-sizing: border-box;
    background-color: white;
    box-shadow: 0px 0px 23px #0080f917;
    border-radius: 20px;
    border: 1px solid hsl(180, 92%, 38%);
}

form {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}
.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-radius: 10px;
    gap: 10px;
}
.form-row input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    margin-right: 10px;
    border-radius: 10px;
    border: 2px solid hsl(0, 0%, 36%);
    transition: 0.5s;
    outline: none; 
}
.form-row select {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border-radius: 10px;
    border: 2px solid hsl(0, 0%, 36%); 
}
.form-row input:last-child {
    margin-right: 0; 
}

form input:focus,
form textarea:focus,
form select:focus {
    border: 2px solid hsl(180, 92%, 38%);
}

form textarea {
    font-family: Arial, sans-serif;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 2px solid hsl(0, 0%, 36%); 
    width: 100%;
    box-sizing: border-box; 
}

.form-row textarea {
    flex: 1; 
    padding: 12px; 
    font-size: 16px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 2px solid hsl(0, 0%, 36%); 
    width: 100%; 
    height: 200px; 
    box-sizing: border-box; 
    resize: vertical;
}

form button {
    padding: 15px;
    font-size: 18px;
    color: white;
    background-color: hsl(180, 92%, 38%);
    border: 1px solid hsl(180, 92%, 38%);
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
    width: 27%; 
    transition: 0.7s ease;
    align-self: flex-start; 
    align-self: flex-end; 
}

form button i {
    margin-right: 6px;
}

    form button:hover {
    background-color: hsl(180, 81%, 34%);
    color: white;
}