/* Super Admin Login Page Styles */
.page-header {
    position: relative;
}

.login-card {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: #fff;
    overflow: visible;
}

/* Navbar logo and text styling */
.navbar-brand {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand img {
    margin-right: 1rem;
}

.navbar-brand .position-relative {
    margin-left: 1rem;
}

.navbar-brand h2 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.navbar-brand h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

/* Form Styles */
.input-group-outline {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.input-group-outline:focus-within {
    border-color: #065DAA;
    box-shadow: 0 0 0 3px rgba(6, 93, 170, 0.1);
}

.input-group-outline .form-control {
    border: none;
    padding: 12px 15px;
}

.input-group-outline .form-control:focus {
    outline: none;
    box-shadow: none;
}

.input-group-outline label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    pointer-events: none;
    color: #999;
    background: #fff;
    padding: 0 5px;
    z-index: 1;
}

.input-group-outline .form-control:focus ~ label,
.input-group-outline .form-control:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 0.75rem;
    color: #065DAA;
}

.input-group-prepend {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.input-group-prepend .input-group-text {
    background: transparent;
    border: none;
    color: #999;
}

.btn-primary {
    background-color: #065DAA;
    border-color: #065DAA;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #054a8a;
    border-color: #054a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 93, 170, 0.3);
}

/* Illustration image positioning */
.col-lg-6.d-none.d-lg-flex {
    z-index: 0;
}

/* Card positioning */
.col-12.col-lg-5.col-xl-3.card {
    margin-left: auto;
    margin-right: 2rem;
}

/* Alert styles */
.alert-danger {
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 15px;
    margin-bottom: 1rem;
}

.alert-danger ul {
    margin: 0;
    padding-left: 20px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .col-lg-6.d-none.d-lg-flex {
        display: none !important;
    }
    
    .col-12.col-lg-5.col-xl-3.card {
        margin-right: 0;
        margin-left: 0;
    }
    
    .navbar-brand {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar-brand .position-relative {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        width: 150px !important;
    }
    
    .navbar-brand h2 {
        font-size: 1.5rem;
    }
    
    .navbar-brand h5 {
        font-size: 1rem;
    }
}

