/* Enhanced Login Page Styles - Split Screen Design */

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

/* Split Screen Layout */
.login-split {
    display: flex;
    width: 100%;
    min-height: 100vh;
}
.new-btn {
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    color: #000;
    padding: 8px 24px;
    border-radius: 5px;
    margin: 20px auto;
    opacity: 1;
    transition: all 0.3s;
}
    .new-btn:hover {
        background:#fff;
        opacity: 0.8;
        transition: all 0.3s;
    }
/* Left Branding Panel */
.branding-panel {
    flex: 1;
     background: linear-gradient(0deg, #1e5a96 0%, #2671b8 25%, #ff9933 75%, #ff7700 100%);
  
    background-size: cover;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.branding-panel::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
    opacity: 0.5;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.branding-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 500px;
}

.branding-logo {
    width: 280px;
    height: auto;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.logo-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.logo-container img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.branding-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.branding-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.branding-supported {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-top: 1.5rem;
}

/* Right Form Panel */
.form-panel {
    flex: 1;
     background: url(/images/banner-login.png) no-repeat;
   /* background: #ffffff;*/
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-container {
    width: 100%;
    max-width: 450px;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #fff;
    font-size: 0.95rem;
}

.login-form .form-label {
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
}
label{
    color:#fff;
}

.login-form .form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.login-form .form-control:focus {
    border-color: #1e5a96;
    box-shadow: 0 0 0 0.2rem rgba(30, 90, 150, 0.15);
}

.login-form .btn-login {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s;
    background: linear-gradient(135deg, #1e5a96 0%, #ff9933 100%);
    border: none;
}

.login-form .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 153, 51, 0.4);
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: #1e5a96;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.login-footer p {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .login-split {
        flex-direction: column;
    }

    .branding-panel {
        min-height: 40vh;
        padding: 2rem;
    }

    .branding-logo {
        width: 200px;
        margin-bottom: 1.5rem;
    }

    .logo-container {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .logo-container img {
        height: 90px;
    }

    .branding-title {
        font-size: 2rem;
    }

    .branding-subtitle {
        font-size: 1.1rem;
    }

    .form-panel {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .branding-panel {
        padding: 1.5rem;
    }

    .branding-logo {
        width: 160px;
        margin-bottom: 1rem;
    }

    .logo-container {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .logo-container img {
        height: 70px;
    }

    .branding-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .branding-subtitle {
        font-size: 1rem;
    }

    .branding-supported {
        font-size: 0.9rem;
    }

    .form-panel {
        padding: 1.5rem 1rem;
    }

    .form-header h1 {
        font-size: 1.5rem;
    }
}