
@media (max-width: 768px) {
    html body{
          background: url(../img/login.png) no-repeat center center fixed;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
            
         
        
    }
     body .login .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 400px;
    width: 300px;
    background-color: white;
    border-radius: 15px; /* Rounded corners for a smoother look */
    text-align: center;
    padding: 30px; /* Increased padding for better spacing */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Softer, larger shadow */
    border: 1px solid #ddd; /* Light border for a clean finish */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
    background: linear-gradient(white, lightgreen);
}

body .login .container:hover {
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3); /* Darker and larger shadow on hover */
    transform: translate(-50%, -50%) scale(1.05); /* Slight scale-up effect on hover */
}
    
        body .login .container .logo {
            padding-top: 0px;
        }
        body .login .container .logo img {
            height: 90px;
        }
        body .login .container .logo .orange{
            color: blue;
            font-size: 25px;
            font-weight: 600;
        }
        body .login .container .logo .blue{
            color: #2563eb;
            font-size: 15px;

        }

        body .login .input-container {
            position: relative;
            margin: 20px 0; /* Added margin for spacing */
        }
        body .login .input-container input {
            height: 30px;
            width: 250px;
            border-radius: 10px;
            border: 1px solid #2563eb;
            padding: 10px;
            font-size: 25px;
            outline: none;
            padding-left: 20px;
        }
          body .login .input-container i{
            position: absolute;
            right: 20px;
            top: 15px;
            font-size: 25px;
            cursor: pointer;
          }
        body .login .input-container label {
            position: absolute;
            left: 20px;
            top: 7px;
            transition: 0.2s ease all;
            color: #aaa;
            pointer-events: none;
            font-size: 25px;
        }
        body .login .input-container input:focus ~ label,
        body .login .input-container input:not(:placeholder-shown) ~ label {
            top: -15px;
            left: 20px;
            font-size: 18px;
            color: blue; /* Change color when focused */
            background-color: white;
            font-weight: 600;
            border: 1px solid black;
            width: 33%;
        }
        body .login .container .ent button{
            height: 50px;
            width: 250px;  
            font-size: 30px;  
            background-color: blue;
            color: white;
            cursor: pointer;
            
        }
       
        body .login .container .ent{
            padding-top: 20px;
        }
        body .login .term {
            font-size: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        body .login .term input{
            height: 20px;
            width: 20px;
        }
}





body {
    background: url(../img/login.png) no-repeat center center fixed;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
}

            .login .container {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                height: 350px;
                width: 300px;
                
                border-radius: 10px;
                text-align: center;
                padding: 20px; /* Added padding for better spacing */
                background: linear-gradient( rgba(255, 255, 255, 0.9), lightgreen);
            }
            .login .container.expanded {
    min-height: 400px; /* a bigger height when error message is shown */
}

        .login .container .logo {
            padding-top: 10px;
        }
        .login .container .logo img {
            height: 60px;
        }
        .login .container .logo .orange{
        	color: blue;
        	font-size: 16px;
        	font-weight: 600;
        }
        .login .container .logo .blue{
        	color: #2563eb;
        	font-size: 15px;

        }
            
        .login .input-container {
            position: relative;
            margin: 20px 0; /* Added margin for spacing */
        }
        .login .input-container input {
            height: 25px;
            width: 250px;
            
            border: 1px solid #2563eb;
            padding: 10px;
            font-size: 20px;
            outline: none;
            padding-left: 20px;
        }
          .login .input-container i{
            position: absolute;
            right: 30px;
            top: 13px;
            font-size: 20px;
            cursor: pointer;
          }
        .login .input-container label {
            position: absolute;
            left: 20px;
            top: 9px;
            transition: 0.2s ease all;
            color: #aaa;
            pointer-events: none;
            font-size: 20px;
        }
        .login .input-container input:focus ~ label,
        .login .input-container input:not(:placeholder-shown) ~ label {
            top: -15px;
            left: 15px;
            font-size: 20px;
            color: blue; /* Change color when focused */
            background-color: white;
            font-weight: 600;
        }
        .login .container .ent button{
        	height: 40px;
            width: 280px;  
            font-size: 20px;  
            background-color: green;
            color: white;
            cursor: pointer;
            
        }
       
        .login .container .ent{
        	padding-top: 20px;
        }
        .login .term {
            font-size: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .login .term input{
            height: 15px;
            width: 15px;
        }

        .login .rf{
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            margin-left: 10px;
            margin-right: 10px;
            margin-bottom: 20px;
            cursor: pointer;
        }
        
        
            
.create .overlay{
        position:fixed;
        top:0px;
        left:0px;
        width:100vw;
        height:100vh;
        background:rgba(0,0,0,0.7);
        z-index:1;
        display: none;
}


.create .content {
position:absolute;
top:50%;
left:50%;
transform: translate(-50%,-50%) scale(0);
background:#fff;
width: 400px;
height: 480px;
z-index:2;
text-align:center;
padding: 20px;
box-sizing:border-box;
border-radius: 20px;
}

.create .close-btn{
position:absolute;
right:20px;
top:20px;
width:30px;
height:30px;
background:white;
color:black;
font-size:25px;
font-weight:600;
line-height:30px;
text-align:center;
border-radius: 50%;
cursor: pointer;
}
.create.active .overlay {
display:block;
}
.create.active .content {
transition:all 300ms ease-in-out;
transform:translate(-50%,-50%) scale(1);
}
.create h1{
    font-size: 20px;
}

.create .form{
    text-align: left;
}
.create .wid input{
    width: 95%;
    height: 25px;
    padding-left: 10px;
}
.create .name {
    font-size: 20px;
    margin-bottom: 5px;
}
.create .createform button{
    height: 30px;
    margin-top: 10px;
    color: black;
    background-color: lightgreen;
    border-radius: 3px;
    cursor: pointer;
}
.create .emes {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: auto; /* Or set a specific width like 300px */
    color: red;
    font-size: 10px;
    font-weight: 400;
    
}

.forgot .overlay{
        position:fixed;
        top:0px;
        left:0px;
        width:100vw;
        height:100vh;
        background:rgba(0,0,0,0.7);
        z-index:1;
        display: none;
}


.forgot .content {
position:absolute;
top:50%;
left:50%;
transform: translate(-50%,-50%) scale(0);
background:#fff;
width: 300px;
height: 200px;
z-index:2;
text-align:center;
padding: 20px;
box-sizing:border-box;
border-radius: 20px;
}

.forgot .close-btn{
position:absolute;
right:20px;
top:20px;
width:30px;
height:30px;
background:white;
color:black;
font-size:25px;
font-weight:600;
line-height:30px;
text-align:center;
border-radius: 50%;
cursor: pointer;
}
.forgot.active .overlay {
display:block;
}
.forgot.active .content {
transition:all 300ms ease-in-out;
transform:translate(-50%,-50%) scale(1);
}
.forgot h1{
    font-size: 20px;
}
.forgot .forgotpass{
    font-size: 16px;
    height: 30px;
    margin-top: 20px;
}
.forgot input{
    height: 25px;
}
.forgot button{
    margin-top: 20px;
    height: 25px;
    border-radius: 5px;
    cursor: pointer;
    background-color: lightgreen;
}
 #bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2;
    } 