/* -----------------------------
   ADMIN LOGIN PAGE STYLING
------------------------------ */

body {
    background: #d4d7dc; /* light grey background like the screenshot */
}

/* Wrapper centers the card */
.login-wrapper {
    max-width: 450px;
    margin: 80px auto;
    text-align: center;
}

/* Large title */
.login-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
}

/* White login card */
.login-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 14px rgba(0,0,0,0.15);
}

/* Sign in text */
.signin-title {
    font-size: 20px;
    margin-bottom: 25px;
    color: #444;
}

/* Input group (with icon) */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px 45px 12px 12px;
    font-size: 16px;
    border: 1px solid #c8d2e0;
    border-radius: 4px;
    background: #eef4ff;
    box-sizing: border-box;   /* prevents overflow */
}


.input-group input:focus {
    outline: none;
    border-color: #7aa7e9;
}

/* Icons inside inputs */
.input-icon {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #555;
}

/* Remember Me + Forgot Password section */
.options-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 14px;
}

.remember input {
    margin-right: 5px;
}

.forgot {
    text-decoration: none;
    color: #2a5885;
}

.forgot:hover {
    text-decoration: underline;
}

/* Sign In button */
.login-btn {
    width: 100%;
    background: #2c7dc9;
    color: white;
    border: none;
    padding: 12px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

.login-btn:hover {
    background: #1e62a8;
}

.error-msg {
    background: #ffebeb;
    border-left: 4px solid #c00;
    padding: 10px;
    color: #900;
    margin-bottom: 20px;
    border-radius: 4px;
}

