/* public/css/auth.css */
:root {
    --primary-yellow: #fbb03b;
    --dark-bg: #111111;
    --input-fill: rgba(248, 249, 250, 0.9);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    height: 100%;
}

/* Background with Image and Blur */
.login-overlay-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* Replace the URL below with your actual image path if local */
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('/images.jpg'); 
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Creating the slight blur effect on the background only */
.login-overlay-wrapper::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    backdrop-filter: blur(6px); /* Adjust blur strength here */
    z-index: 1;
}

.login-premium-card {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: 380px;
    border-radius: 25px;
    padding: 45px 35px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2; /* Ensures card stays above the blur */
    text-align: center;
}

/* Brand Section */
.auth-brand-wrapper {
    margin-bottom: 30px;
}

.auth-brand-logo {
    height: 65px;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.auth-brand {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin: 0;
}

.auth-brand span { color: var(--primary-yellow); }

.auth-subtitle {
    font-size: 0.65rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Input Styles & Hover Effects */
.input-field-wrapper {
    margin-bottom: 20px;
    text-align: left;
}

.field-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 6px;
    display: block;
    padding-left: 2px;
}

.input-relative {
    position: relative;
}

.modern-input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    background: var(--input-fill);
    border: 1.5px solid #eee;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: var(--transition);
    box-sizing: border-box;
}

/* HOVER EFFECT FOR INPUTS */
.modern-input:hover {
    border-color: #ccc;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* FOCUS EFFECT */
.modern-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: #fff;
    box-shadow: 0 8px 20px rgba(251, 176, 59, 0.15);
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    transition: var(--transition);
}

.modern-input:focus + .input-icon {
    color: var(--primary-yellow);
}

.input-icon-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    cursor: pointer;
}

/* Remember & Forgot Row */
.form-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.8rem;
}

.remember-me {
    color: #666;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.remember-me input {
    margin-right: 8px;
    accent-color: var(--primary-yellow);
}

.forgot-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
}

.forgot-link:hover {
    color: var(--primary-yellow);
}

/* Button */
.btn-login-premium {
    width: 100%;
    background: var(--dark-bg);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-login-premium:hover {
    background: var(--primary-yellow);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(251, 176, 59, 0.3);
}

.footer-tag {
    margin-top: 30px;
    font-size: 0.55rem;
    color: #999;
    letter-spacing: 2px;
}