/* Custom Premium Auth Styles — RAMA FINANCE */
:root {
    --primary-color: #00B050;
    --primary-hover: #008f41;
    --bg-image: url('../images/bg_login.jpg');
    --bg-gradient: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), var(--bg-image);
    --card-bg: #ffffff;
    --shadow: 0 15px 35px rgba(0,0,0,0.15);
}

body.auth-page {
    background: var(--bg-gradient) !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.auth-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 45px;
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.auth-logo {
    margin-bottom: 35px;
    text-align: center;
}

.auth-logo img {
    height: 80px;
}

.auth-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    color: #6c757d;
    text-align: center;
    margin-bottom: 35px;
    font-size: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #444;
    font-size: 14px;
    margin-bottom: 10px;
}

.form-control-premium {
    width: 100%;
    border-radius: 10px;
    border: 1.5px solid #e1e5eb;
    padding: 14px 18px;
    font-size: 15px;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control-premium:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 176, 80, 0.15);
    outline: none;
}

.btn-premium {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 176, 80, 0.1);
}

.btn-premium:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 176, 80, 0.25);
}

.auth-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

#msg {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
}

.msg-error {
    color: #e74c3c;
}

.msg-success {
    color: #27ae60;
}

.footer-links {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

@media (max-width: 576px) {
    .auth-card {
        padding: 30px;
        margin: 20px;
    }
}
