/* ==============================
   ADMIN LOGIN UI – LIGHT GREEN
   ============================== */

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #eaf8f0;
    color: #000;
}

/* Wrapper */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Login Card */
.login-card {
    width: 900px;
    max-width: 95%;
    display: flex;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* ==============================
   LEFT PANEL
   ============================== */
.login-left {
    flex: 1.2;
    background: linear-gradient(135deg, #03a1de, #03a1de);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
}

.brand-subtitle {
    font-size: 16px;
    line-height: 1.6;
}

/* ==============================
   RIGHT PANEL (IMAGE)
   ============================== */
.login-right {
    flex: 1;
    position: relative;
    padding: 60px 40px;
    color: #000;
}

/* Background Image */
.image-bg {
    background: url("/img/carousel-1.jpg") center/cover no-repeat;
}

/* Soft overlay for readability */
.image-bg .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.78);
    z-index: 1;
}

/* Ensure content stays above overlay */
.login-right * {
    position: relative;
    z-index: 2;
}

/* Titles */
.form-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
    color: #333;
}

/* Forms */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #bbb;
    font-size: 14px;
}

/* Password */
.password-wrapper {
    position: relative;
}

.password-wrapper i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #333;
}

/* Remember */
.remember-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 22px;
}

/* Button */
.login-btn {
    width: 100%;
    padding: 14px;
    background: #03a1de;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background: #03a1de;
}

/* Errors */
.flash-error,
.error-text {
    font-size: 13px;
    color: #c0392b;
    margin-top: 6px;
}

/* Footer */
.login-footer {
    position: fixed;
    bottom: 15px;
    left: 15px;
    font-size: 13px;
    color: #555;
}
