﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Left Side - Image Section */
.left-section {
    flex: 1;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.85)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231e3c72" width="1200" height="800"/><g fill="%23ffffff" opacity="0.1"><circle cx="200" cy="150" r="80"/><circle cx="800" cy="600" r="120"/><circle cx="1000" cy="200" r="60"/><circle cx="300" cy="650" r="100"/></g></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 60px;
    position: relative;
}

    .left-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3d5a8f 100%);
        opacity: 0.95;
    }

.left-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 500px;
}

.logo-section {
    margin-bottom: 40px;
}

.emblem {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.left-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.left-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 15px;
}

.features {
    margin-top: 50px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 28px;
    min-width: 40px;
}

.feature-text {
    font-size: 15px;
}

/* Right Side - Login Section */
.right-section {
    flex: 1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.login-container {
    width: 100%;
    max-width: 450px;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

    .login-header h2 {
        font-size: 32px;
        color: #1e3c72;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .login-header p {
        color: #666;
        font-size: 15px;
    }

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        color: #333;
        font-weight: 600;
        margin-bottom: 10px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.input-wrapper {
    position: relative;
}

    .input-wrapper input {
        width: 100%;
        padding: 15px 50px 15px 20px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.3s;
        outline: none;
        background: #f8f9fa;
    }

        .input-wrapper input:focus {
            border-color: #2a5298;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(42, 82, 152, 0.1);
        }

.input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #999;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

    .remember-me input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

.forgot-password {
    color: #2a5298;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

    .forgot-password:hover {
        color: #1e3c72;
    }

.login-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(30, 60, 114, 0.4);
    }

    .login-btn:active {
        transform: translateY(0);
    }

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

    .divider::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 1px;
        background: #e0e0e0;
    }

    .divider span {
        background: #fff;
        padding: 0 20px;
        position: relative;
        color: #999;
        font-size: 14px;
        font-weight: 600;
    }

.register-link {
    text-align: center;
    color: #666;
    font-size: 15px;
}

    .register-link a {
        color: #2a5298;
        font-weight: 700;
        text-decoration: none;
        transition: color 0.3s;
    }

        .register-link a:hover {
            color: #1e3c72;
        }

.footer-text {
    text-align: center;
    margin-top: 30px;
    color: #999;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .left-section {
        min-height: 300px;
        padding: 40px 30px;
    }

    .left-content h1 {
        font-size: 28px;
    }

    .features {
        display: none;
    }

    .right-section {
        padding: 40px 30px;
    }

    .emblem {
        width: 80px;
        height: 80px;
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .left-section {
        min-height: 250px;
    }

    .right-section {
        padding: 30px 20px;
    }

    .login-container {
        max-width: 100%;
    }
}

