@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

 
 
    .container
    {margin: 0 15px;
    }
    .form-box{
        width: 100%;
        max-width: 450px;
        padding: 30px;
        background: #fff;
        border-radius: 10px;
        display: none;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
.form-box.active{
    display: block;
}
    input{
        width: 100%;
        padding: 12px;
        background: #eee;
        border-radius: 6px;
        border: none;
        outline: none;
        font-size: 16px;
        color: #333;
        margin-bottom: 30px;
    }
    h2{
        font-size: 34px;
        text-align: center;
        margin-bottom: 20px;
        color: black;
    }
 
   
    button{
        width: 100%;
        padding: 12px;
        background: #7494ec;
        border-radius: 6px;
        border: none;
        cursor: pointer;
        font-size: 16px;
        color: #efff;
        font-weight: 500;
        margin-bottom: 20px;
        transition: 0.5s;
    }
    button:hover{
        background: #6884d3;
    }
    .popup-container{
        background-color: rgb(0, 0, 0, 0.6);
        
        width: 100%;
        padding: 30px;
        border-radius: 10px;
        max-width: 450px;
       
    }


    .error_meaage{
        padding: 12px;
        background: #fff;
        font-size: 16px;
        color: red;
        
    }