* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(30deg, #E1E47D 0%, #F9F297 25%, #ffffff 50%, #AFBFE1 75%, #BFDDE7 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    display: flex;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    gap: 40px;
}

/* Social Media Sidebar */
.social-sidebar {
    position: fixed;
    left: -20px;
    top: 70%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, #6682B2 0%, #7799BC 25%, #7CA0BA 50%, #86B2BF 75%, #96C6C6 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    padding: 20px 10px;
    padding-left: 20px;
    align-items: flex-end;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}


.social-icon:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Left Content */
.left-content {
    flex: 1;
    padding: 40px 20px;
    margin-left: 60px;
    padding-right: 10vw;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2vh;
    justify-content: center;
}

.logo-icon img {
    position: relative;
    width: 25vw;
    height: auto
}



.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-eval {
    font-size: 36px;
    font-weight: bold;
    color: #2c5aa0;
}

.logo-tek {
    font-size: 36px;
    font-weight: bold;
    color: #4a90e2;
    margin-left: -5px;
}

.logo-subtitle {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Main Content */
.main-content h1 {
    font-size: 48px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 300;
}

.main-content h1 .highlight {
    font-weight: bold;
    color: #000;
}

.main-content h2 {
    font-size: 42px;
    color: #000;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.description {
    margin-bottom: 40px;
}

.description p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
}

/* Feature Box */
.feature-box {
    background: white;
    border-radius: 60px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 650px;
    margin-top: 40px;
}
.feature-box img{
   width: 20%;
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2, #7bb3f0);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 24px;
}

.feature-icon i:first-child {
    margin-right: -10px;
}

.feature-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.feature-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Right Content - Login Form */
.right-content {
    flex: 0 0 400px;
    display: flex;
    align-items: flex-start;
    justify-content: center;

}

.login-container {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

/* Tab Headers */
.tab-headers {
    display: flex;
    background: #243354;
}

.tab-btn {
    flex: 1;
    padding: 20px;
    border: none;
    background: transparent;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #2F9DC0;
}

.tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

/* Form Logo */
.form-logo {
    display: flex;
    justify-content: center;
    padding: 30px 0 20px;
    background: #2F9DC0;
}

.form-logo img {
    position: relative;
    width: auto;
    height: 15vh;
}



.emp-logo img {
    position: relative;
    width: auto;
    height: 20vh;
}


.form-shape1 {
    top: 5px;
    left: 0;
    transform: rotate(-15deg);
    opacity: 0.9;
}

.form-shape2 {
    top: 20px;
    left: 10px;
    transform: rotate(15deg);
    opacity: 0.7;
}

.form-shape3 {
    top: 35px;
    left: 5px;
    transform: rotate(-10deg);
    opacity: 0.8;
}

/* Form Content */
.form-content {
    display: none;
    padding: 40px;

}

.form-content.active {
    display: flex;
        justify-content: center;
}


.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    background-clip: padding-box;
    border: 2px solid #96C6C6; 
    border-radius: 25px;
}

.input-group input:focus {
    outline: none;
    border: 2px solid #96C6C6; 
    background: white;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.input-group input::placeholder {
    color: #999;
}

.button {
    width: 100%;
    display: flex;
    justify-content: center;

}

.submit-btn {
    width: 50%;
    padding: 15px;
    align-items: center;
    background: linear-gradient(-90deg, #6682B2 0%, #7799BC 25%, #7CA0BA 50%, #86B2BF 75%, #96C6C6 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    align-content: center;
}

.submit-btn:hover {
    background: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #666;
}

.checkbox-container input {
    margin-right: 8px;
}

.forgot-password {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        gap: 20px;
    }

    .left-content {
        margin-left: 0;
        text-align: center;
    }

    .right-content {
        flex: none;
        align-self: center;
    }

    .social-sidebar {
        
        flex-direction: column;
        justify-content: center;
        padding: 10px;
        margin-bottom: 20px;
    }

    .main-content h1 {
        font-size: 36px;
    }

    .main-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .main-content h1 {
        font-size: 28px;
    }

    .main-content h2 {
        font-size: 24px;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
    }

    .login-container {
        max-width: 100%;
    }

    .form-content {
        padding: 20px;
    }
}


 .modal {
                        display: none; 
                        position: fixed; 
                        z-index: 1000; 
                        left: 0; top: 0;
                        width: 100%; height: 100%;
                        overflow: auto; 
                        background-color: rgba(0,0,0,0.4);
                    }
                    .modal-content {
                        display: flex;
                        flex-direction: column;
                        background-color: #fff;
                        margin: 3% auto; 
                        padding: 20px;
                        border-radius: 8px;
                        width: 90%; max-width: 400px;
                        position: relative;
                    }
                    .close {
                        color: #aaa;
                        position: absolute;
                        right: 16px; top: 8px;
                        font-size: 28px;
                        font-weight: bold;
                        cursor: pointer;
                    }
                    .close:hover { color: #333; }

                    select {
                        width: 100%;
                        padding: 12px 16px;
                        font-size: 16px;
                        border: 2px solid #96C6C6;
                        border-radius: 25px;
                        background: #f8f9fa;
                        color: #333;
                        transition: border-color 0.3s, box-shadow 0.3s;
                        appearance: none;
                        outline: none;
                    }

                    select:focus {
                        border-color: #4a90e2;
                        background: #fff;
                        box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
                    }

                    select:disabled {
                        background: #e9ecef;
                        color: #aaa;
                        cursor: not-allowed;
                    }

                    .modal-content h2 {
                        margin-top: 0;
                        margin-bottom: 10px;
                        font-size: 24px;
                        color: #333;
                    }