@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            min-height: 100dvh;
            display: flex;
            align-items: center;
            justify-content: center;

        }

        .container {
            /* background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
            display: flex;
            justify-content: center;
            align-items: center;
            /* min-height: 600px; */
            max-width: 1300px;
            width: 100%;
            overflow: hidden;
            /* padding: 5rem; */
            padding: 0 4rem;
        }
        .banner{
            max-height: 80dvh; 
            /* added dvh */
            /* background: #000; */
            padding-left: 10rem;
           /* width: 20rem; */

        }
        .logo{
            max-width: 12rem;
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .left-panel {
            flex: 1;
            /* padding: 60px 50px; */
            display: flex;
            flex-direction: column;
        }

        

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #4CAF50, #2E7D32);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
        }

        .logo-icon::before {
            content: "🌿";
            font-size: 20px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 600;
            color: #333;
        }

        h1 {
            font-size: 36px;
            font-weight: 700;
            color: #333;
            margin-bottom: 8px;
        }

        .subtitle {
            color: #666;
            margin-bottom: 40px;
            font-size: 16px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .input-container {
            position: relative;
        }

        input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #fafbfc;
        }

        input:focus {
            outline: none;
            border-color: #4CAF50;
            background: white;
        }

        input::placeholder {
            color: #9ca3af;
        }

        .input-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-size: 18px;
        }

        .login-btn {
            width: 100%;
            background: #333;
            color: white;
            border: none;
            padding: 18px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 40px;
        }
        

        .login-btn:hover {
            background: #555;
            /* transform: translateY(-2px); */
        }

        .contact-section h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 12px;
        }

        .contact-info {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .contact-details {
            display: flex;
            align-items: center;
            /* flex-direction: column; */
            gap: 8px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            color: #666;
            font-size: 14px;
        }

       a{
        text-decoration: none;
        color: #666;
       }

        .right-panel {
            flex: 1;
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            display: flex;
            align-items: center;
            justify-content: center;
            /* position: relative; */
            overflow: hidden;
        }
.sub-text{
            color:#A6A6A6;
            font-size: 0.9rem;
        }
       
.footer-item{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #A6A6A6;
    font-size: 0.9rem;
}
.icon{
    display: flex;
    align-items: center;
}
.input-box {
  
    border-radius: 16px;
    background-color: #FFFFFF;
     box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.12);

    border: none;
    
    font-family: 'Open Sans', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}
.input-box:focus {
        box-shadow: -4px 4px 8px 0px rgba(0, 0, 0, 0.12);


}

.input-box::placeholder {
    color: #999;
}
#errorBox{
    color: red;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.hide{
    display: none;
}
        

         @media (max-width: 1000px) {
            .container {
                
                padding: 10dvh;
            }
            
            .right-panel {
                display: none;
            }
            .left-panel {
                padding: 40px 30px;
            }
            
            .device-container {
                transform: scale(0.5);
            }
            
            .left-panel {
                padding: 40px 30px;
            }
        }

         @media (max-width: 1190px) {
            .banner{
            
            padding-left: 5rem;
           /* width: 20rem; */

        }
        }
        @media (max-width: 800px) {
            .contact-details{
                /* display: block; */
                /* background: red; */
            flex-direction: column;
           /* width: 20rem; */
            }
            .container {
                
                padding: 10px;
            }
            
        }
        
       

