@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #090c15 url('../img/bglogin.webp') center center / cover no-repeat fixed;
    min-height: 100vh;
    width: 100%;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 12, 21, 0.90) 0%, rgba(24, 0, 171, 0.45) 50%, rgba(9, 12, 21, 0.92) 100%);
    z-index: 1;
}

#section-login {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-wrapper {
    display: flex;
    width: 100%;
    max-width: 980px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(24, 0, 171, 0.35);
    transition: all 0.4s ease;
}

/* Left Brand Showcase Section */
.brand-showcase {
    flex: 1.1;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg, rgba(10, 14, 30, 0.85) 0%, rgba(24, 0, 171, 0.35) 100%);
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo-icon {
    width: 48px;
    height: 48px;
    background: #1800AB;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(24, 0, 171, 0.5);
}

.brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-transform: uppercase;
}

.brand-title span {
    color: #60a5fa;
}

.brand-hero-content {
    margin: 36px 0;
}

.brand-tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(24, 0, 171, 0.45);
    border: 1px solid rgba(165, 180, 252, 0.3);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: #e0e7ff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.brand-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 16px;
}

.brand-hero-title span {
    background: linear-gradient(135deg, #93c5fd 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-description {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: #e2e8f0;
    font-weight: 500;
}

.feature-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    font-size: 15px;
}

.brand-footer {
    font-size: 13px;
    color: #94a3b8;
}

/* Right Login Form Container */
.wrap-login {
    width: 440px;
    background-color: #1800AB !important; /* REQUIRED BY USER REQUEST: #1800AB */
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: opacity 0.6s ease-in-out;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.brand-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 0 auto 16px;
    border-radius: 20px;    
    overflow: hidden;
}

.brand-badge-icon img {
    max-width: 180px;
    width: auto;
    height: auto;
}

.form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.form-subtitle {
    font-size: 14px;
    color: #d0d7ff;
    font-weight: 400;
}

/* Custom Input Styling */
.custom-form-group {
    position: relative;
    margin-bottom: 22px;
}

.input-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #e0e7ff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #a5b4fc;
    font-size: 16px;
    transition: color 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.custom-input {
    width: 100%;
    height: 52px;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 12px !important;
    padding: 0 46px 0 46px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none !important;
    transition: all 0.3s ease !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-input::placeholder {
    color: #b4c6ff;
    opacity: 0.75;
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.custom-input:focus ~ .input-icon {
    color: #ffffff;
}

.toggle-password-btn {
    position: absolute;
    right: 14px;
    background: transparent;
    border: none;
    color: #a5b4fc;
    cursor: pointer;
    padding: 6px;
    font-size: 15px;
    transition: color 0.2s ease;
    z-index: 3;
}

.toggle-password-btn:hover {
    color: #ffffff;
}

/* Submit Button */
.btn-login-submit {
    width: 100%;
    height: 52px;
    background: #ffffff;
    color: #1800AB;
    border: none;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-login-submit:hover {
    background: #f8fafc;
    color: #0d006b;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.4);
}

.btn-login-submit:active {
    transform: translateY(0);
}

.btn-login-submit i {
    transition: transform 0.3s ease;
}

.btn-login-submit:hover i {
    transform: translateX(4px);
}

/* Footer Info */
.wrap-foot {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    font-size: 12px;
    color: #d0d7ff;
}

.wrap-foot a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.wrap-foot a:hover {
    text-decoration: underline;
}

.version-badge {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

/* Responsive queries */
@media (max-width: 860px) {
    .brand-showcase {
        display: none;
    }
    
    .login-wrapper {
        max-width: 440px;
    }
    
    .wrap-login {
        width: 100%;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    #section-login {
        padding: 12px;
    }
    
    .wrap-login {
        padding: 36px 24px;
    }
}