/* Login Container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a2a44 0%, #2e4a6a 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

.login-background {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Login Box */
.login-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.login-title {
    color: #1a2a44;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Login Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #2e4a6a;
    font-size: 16px;
}

.input-group input {
    width: 80%;
    padding: 12px 15px 12px 40px;
    border: 2px solid #2e4a6a;
    border-radius: 8px;
    font-size: 14px;
    background: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.input-group input:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.login-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff8787);
    color: #ffffff;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.4);
}

.login-btn:hover {
    background: linear-gradient(45deg, #e63946, #ff4d4d);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.6);
}

.forgot-password {
    color: #ff6b6b;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #e63946;
}

/* Login Footer */
.login-footer {
    margin-top: 20px;
    color: #2e4a6a;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 480px) {
    .login-box {
        padding: 20px;
        margin: 20px;
    }

    .login-title {
        font-size: 24px;
    }

    .input-group input {
        padding: 10px 15px 10px 35px;
        font-size: 12px;
    }

    .login-btn {
        padding: 10px;
        font-size: 14px;
    }

    .forgot-password {
        font-size: 11px;
    }

    .login-footer {
        font-size: 10px;
    }
}