*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #e2e2e2, #b172b1);
    color:#333;
   
}
.container{
  margin-left: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
 
}
.form-box{
    width: 100%;
    
    max-width: 500px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);

   
}
.form-box.active{
    display: block;
}

.form-box .log{
    font-size: 44px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}
 .form-box input, select{
    width: 100%;
    padding: 12px;
    background: #eee;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 16px;
    color:#333;
    margin-bottom: 20px;
    margin-left: -2px;
}

.form-box button{
    width: 100%;
    padding: 12px;
    background: #7494ec;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color:#fff;
    font-weight: 500;
    margin-bottom: 20px;
    transition: 0.5s;
}

.form-box button:hover{
    background: #6884d3;
}
.form-box p{
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;


}
.form-box p a{
    color:#7494ec;
     text-decoration: none;
}

.form-box p a:hover{
    text-decoration: underline;
}
.error_message{
    padding:12px;
    background: #f8d7da;
    border-radius: 6px;
    font-size: 20px;
    color:#a42834;
    text-align: center;
    margin-bottom: 20px;
}


.box-2 h1{
    font-size: 50px;

}
.box-2 span{
    color:#7494ec;
}
.box-2 p{
    font-size: 22px;
}

.box-2 button{
    display: block;
    width:300px;
    margin: 20px auto;

   
    padding: 12px;
    background: #7494ec;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color:#fff;
    font-weight: 500;
    margin-bottom: 20px;
    transition: 0.5s;
}

.box-2 button:hover{
    background: #6884d3;
}

#register-form{
    width: 800px;
    margin-top: 60px;
    margin-bottom: 60px;
}

button a{
    font-size: 40px;
    color:#e2e2e2;
    transition: .5s;
}
button .fa-regular{
    margin-left: -10px;
}
button .fa-brands{
    margin-left: 50px;
}
button a:hover{
color:#b172b1;
transform: scale(1.12);
z-index: 0.2;

}

@media (max-width:768px){
    .form-box{
    max-width: 350px;
    }}







































