body{
    background: linear-gradient(to right, rgb(67, 1, 34), rgb(176, 124, 154), rgb(67, 1, 34));
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}

*{
    box-sizing: border-box;
}
.form-section{
    background-color: wheat;
    width: 100%;
    padding: 20px; 
} 
h1{
    text-align: center;
    margin-bottom: 25px;

    color: rgb(67, 1, 34);

    font-size: 30px;
}
.form{
    width: 100%;
    max-width: 500px;
    margin: auto;
    padding: 35px;
    background: lightgray;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 2);
}

input{
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #cdc7c7;
    outline: navy;
    transition: 0.3s ease;
}

input:focus{
    border-color: rgb(67, 1, 34);

    box-shadow: 0 0 10px rgba(67, 1, 34, 0.3);
}

label{
    display: block;
    margin-bottom: 8px;

    font-size: 16px;
    font-weight: bold;

    color: rgb(67, 1, 34);
}

.dob{
margin-bottom: 20px;
}
.name{
margin-bottom: 20px;
}

button{
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;

    background: rgb(67, 1, 34);
    color: white;

    font-size: 18px;
    cursor: pointer;

    transition: 0.3s ease;
}

button:hover{
    background: rgb(120, 20, 70);
    transform: scale(1.02);
}