body{
    background-image: url(../img/IMG_20250406_083052.jpg);
    background-position: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

section{
     padding: 2rem;
}
.account{
     width: 400px;
     height: 630px;
     margin: 20px auto;
     background-color: white;
     border-radius: 3px;
}
form{
    padding: 10px;
}
form h1{
    text-align: center;
    color: green;
    font-size: 25px;
}
form h2{
    text-align: center;
    color: green;
    font-size: 20px;
}
form label{
    font-size: 19px;
    color: black;
}
form label strong{
    color: red;
    font-size: 16px;
}
form input{
    border: 1px solid #ccc;
    width: 90%;
    height: 30px;
    margin-bottom: 10px;
    padding-left: 5px;
    font-size: 15px;
    outline: none;
    border-radius: 3px;
}
form input:focus{
    border-color: green;
    box-shadow: 0 0 5px green;
}
form select{
    height: 35px;
    width: 92%;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.9rem;
    padding-left: 5px;
    outline: none;
    margin-bottom: 10px;
 }
 form button{
    background: #004d40;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
    width: 120px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 768px){
    section{
        padding: 0;
    }
}