/* RevBoost Premium Login Styling */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.rb-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9fafb;
    font-family: 'Inter', -apple-system, sans-serif;
    padding: 20px;
    box-sizing: border-box;
}

.rb-login-box {
    background: #ffffff;
    padding: 48px;
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

.rb-login-header {
    text-align: center;
    margin-bottom: 32px;
}

.rb-login-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 8px 0;
    letter-spacing: -0.025em;
}

.rb-login-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

/* Error State */
.rb-login-error {
    background-color: #fef2f2;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.875rem;
    margin-bottom: 24px;
    border: 1px solid #fecaca;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Fields */
.rb-field {
    margin-bottom: 20px;
}

.rb-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.rb-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.rb-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    color: #111827;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.rb-field input::placeholder {
    color: #9ca3af;
}

.rb-field input:focus {
    outline: none;
    border-color: #6366f1;
    ring: 3px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Options & Remember Me */
.rb-options {
    display: flex;
    justify-content: space-between; /* Pushes remember me to left, forgot password to right */
    align-items: center;
    margin-top: 15px;
    margin-bottom: 20px;
}

.rb-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #475569;
}

.rb-remember input {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    accent-color: #6366f1;
}

.rb-forgot-link {
    font-size: 14px;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
}

.rb-forgot-link:hover {
    text-decoration: underline;
}

/* Button */
.rb-submit button {
    width: 100%;
    padding: 12px;
    background-color: #4f46e5;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.rb-submit button:hover {
    background-color: #4338ca;
}

.rb-submit button:active {
    transform: scale(0.98);
}

/* Footer */
.rb-login-footer {
    margin-top: 32px;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.rb-login-footer a {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
}

.rb-login-footer a:hover {
    text-decoration: underline;
}


/* ============================= */
/* Vector Reviews Brand Styling */
/* Scoped only to login title    */
/* ============================= */

/* ============================= */
/* Vector Reviews Brand Hierarchy */
/* ============================= */

.rb-login-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* Smaller, softer intro line */
.rb-login-title .rb-welcome-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.02em;
}

/* Brand container */
.rb-login-title .rb-brand {
    display: inline-flex;
    align-items: baseline;
}

/* Vector */
.rb-login-title .rb-brand-vector {
    color: #111827;
    font-size: 1.9rem;
    font-weight: 700;
}

/* Reviews */
.rb-login-title .rb-brand-reviews {
    color: #22d3ee; /* aquatic premium */
    font-size: 1.9rem;
    font-weight: 800;
    margin-left: 4px;
}

/* Dot */
.rb-login-title .rb-brand-dot {
    width: 8px;
    height: 8px;
    background: #009e60;  /* premium violet #a78bfa*/
    border-radius: 50%;
    display: inline-block;
    margin-left: 6px;
    position: relative;
    top: 0px; /* baseline alignment tweak */
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .rb-login-box {
        padding: 32px 24px;
        border: none;
        box-shadow: none;
        background: transparent;
    }
}