*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #e2ece2 , #c9d6ff);
    color: #333;
}

.container{
    margin:  0 15px;
}
.form-box{
    width: 100%;
    max-width: 450px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: none;

}
.form-box.active{
    display: block;
}



h2{
    font-size: 34px;
    text-align: center;
    margin-bottom: 20px;

}


input,
select {
    width: 100%;
    padding: 12px;
    background-color: #eee;
    border-radius: 6px;
    border: none;
    outline: none;
    margin-bottom: 16px;
    font-size: 20px;
    color: #333;

}


button{
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background-color: #7494ec;
    font-size: 16px;
    font-weight: 500px;
    margin-bottom: 20px;
    transition: 2.5;
}

button:hover{
    background-color: #6884d3;

}

p{
    font-size: 14.5px;
    text-align: center;
    
    margin-bottom: 10px;
}

p a{
    color: #7494ec;
    text-decoration: none;
}

p a:hover{
    text-decoration: underline;
}

.error-message{

    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    color: #a42834;
    text-align: center;
    margin-bottom: 20px;
     background: #f8d7da;
}


h1{
    font-size:50px;
}

span{
    color: #7494ec;
}
.box p{
    font-size:22px;
}

.box button{
    display:block;
    width: 300px;
    margin: 0 auto;

}
