.login-body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ff8c00 0%, #ff9f1a 25%, #ffa733 50%, #ffb84d 75%, #ffc266 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    padding: 20px;
    z-index: 10;
}

.login-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 20px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.login-header h1 {
    margin: 0 0 8px;
    color: #142033;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.login-subtitle {
    margin: 0;
    color: #667085;
    font-size: 14px;
    font-weight: 500;
}

.form-error-banner {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 13px;
}

.login-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: #142033;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.label-icon {
    font-size: 16px;
}

.input-wrapper {
    position: relative;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    color: #142033;
    background: #f9fafb;
    transition: all 0.3s ease;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #ff8c00;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

input[type="text"]::placeholder,
input[type="password"]::placeholder {
    color: #9ca3af;
}

.field-error {
    color: #dc2626;
    font-size: 12px;
    margin-top: 4px;
}

.login-button {
    background: linear-gradient(135deg, #ff8c00 0%, #ff9f1a 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 12px;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 140, 0, 0.4);
    background: linear-gradient(135deg, #ff9f1a 0%, #ffb333 100%);
}

.login-button:active {
    transform: translateY(0);
}

.login-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.login-footer p {
    margin: 0;
    color: #9ca3af;
    font-size: 12px;
}

/* Decorative Background Elements */
.login-background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
}

.decoration-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.decoration-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite 2s;
}

.decoration-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 5%;
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .login-container {
        padding: 15px;
    }

    .login-box {
        padding: 40px 24px;
    }

    .login-header h1 {
        font-size: 24px;
    }

    .login-subtitle {
        font-size: 13px;
    }

    .decoration-circle-1 {
        width: 250px;
        height: 250px;
        top: -75px;
        right: -75px;
    }

    .decoration-circle-2 {
        width: 200px;
        height: 200px;
        bottom: 0;
        left: 0;
    }

    .decoration-circle-3 {
        display: none;
    }
}
