*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body {
    background-color: #79b8ef81;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container {
    margin: 0 15px;
}
.form-box{
    width: 100%;
    max-width: 450px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px #7a7878;
    display: none;
}
.form-box.active {
    display: block;
}
h2{
    text-align: center;
    margin-bottom: 20px
}
input, select{
    width: 100%;
    padding: 12px;
    background: #d8d5d5;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 16px;
    margin-bottom: 20px;
}

button {
    width: 100%;
    padding: 12px;
    background: #7494ec;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    transition: 0.5s;
}
button:hover {
    background: #2d56ae;
}
p {
    text-align: center;
    font-size: 15px;
    margin-bottom: 10px;
}
p a{
    text-decoration: none;
    color: #7494ec;
}
p a:hover {
    text-decoration: underline;
}
.error-message{
    padding: 12px;
    background: #f8d7da;
    border-radius: 5px;
    font-size: 16px;
    color:#a42834;
    text-align: center;
    margin-bottom: 20px;
}