/* Custom Login Page Styles - Based on BidClaim Design */

.vr-custom-login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.vr-login-hero {
    background: #222222;
    padding: 80px 0;
    text-align: center;
}

.vr-login-hero h1 {
    font-size: 36px;
    font-weight: 600;
    color: white;
    margin: 0;
}

/* Login Section */
.vr-login-section {
    flex: 1;
    background: #F5F5F5;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vr-login-container {
    width: 100%;
    max-width: 450px;
    padding: 0 20px;
}

/* Login Card */
.vr-login-form-wrapper {
    position: relative;
}

.vr-login-card {
    background: white;
    border-radius: 12px;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    padding: 50px 40px;
    border: 1px solid #e1e8ed;
}

.vr-welcome-message {
    text-align: center;
    padding: 20px;
}

.vr-welcome-message h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.vr-welcome-message p {
    color: #6c757d;
    margin-bottom: 20px;
}

.vr-logout-btn,
.vr-dashboard-btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 5px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vr-logout-btn {
    background: #dc3545;
    color: white;
}

.vr-logout-btn:hover {
    background: #c82333;
    color: white;
}

.vr-dashboard-btn {
    background: #007bff;
    color: white;
}

.vr-dashboard-btn:hover {
    background: #0056b3;
    color: white;
}

/* Form Styles */
.vr-login-form {
    width: 100%;
}

.vr-form-group {
    margin-bottom: 20px;
}

.vr-form-label {
   display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1A1A1A;
    font-size: 14px;
    line-height: 115%;
}

.vr-form-input {
    width: 100%;
    padding: 12px 15px;
    background: #f5f5f5;
    /* border: none; */
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    border:4px solid transparent;
    color:#1A1A1A;
    font-size:14px;
}

.vr-form-input:focus {
    /* outline: none;
    border-color: #333;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); */
    border: 4px solid #E8E8E8
}

.vr-form-input::placeholder {
    color: #7D7D7D;
    font-size:14px;
}

/* Form Options */
.vr-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vr-remember-me {
    display: flex;
    align-items: center;
}

.vr-remember-me input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.vr-remember-me label {
    color: #333;
    font-size: 12px;
    cursor: pointer;
}

.vr-forgot-password {
    color: #333;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.vr-forgot-password:hover {
    color: #000;
    text-decoration: underline;
}

/* Login Button */
.vr-login-btn {
    width: 100%;
    background: #FDC726;
font-family: "DM Sans", sans-serif;
    color: #1A1A1A;
    border: none;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.vr-login-btn:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Register Link */
.vr-register-link {
    text-align: center;
    color: #767676;
    font-size: 14px;
    font-weight: 500;
}

.vr-register-link a {
    color: #1A1A1A;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
}

.vr-register-link a:hover {
    color: #333;
}

/* Error Messages */
.vr-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Success Messages */
.vr-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* =============================================================
   Profile Page — wider container & multi-section form card
   ============================================================= */

.vr-profile-container {
    width: 100%;
    max-width: 820px;
    padding: 0 20px;
}

.vr-profile-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e8ed;
    overflow: hidden;
}

.vr-profile-section {
    padding: 32px 40px;
    border-bottom: 1px solid #f0f0f0;
}

.vr-profile-section:last-child {
    border-bottom: none;
}

.vr-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 24px;
}

.vr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

.vr-form-row .vr-form-group {
    margin-bottom: 20px;
}

.vr-form-row .vr-form-group.full {
    grid-column: 1 / -1;
}

.vr-profile-actions {
    display: flex;
    justify-content: flex-end;
    padding: 24px 40px;
    gap: 12px;
}

.vr-save-btn {
    background: #ffc107;
    color: #000;
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.vr-save-btn:hover {
    background: #e0a800;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.vr-readonly-input {
    background: #efefef !important;
    cursor: not-allowed;
    color: #888;
}

.vr-profile-notice {
    padding: 32px 40px 0;
}

/* Responsive - profile form */
@media (max-width: 640px) {
    .vr-form-row {
        grid-template-columns: 1fr;
    }

    .vr-profile-section {
        padding: 24px 20px;
    }

    .vr-profile-actions {
        padding: 20px;
        flex-direction: column;
    }

    .vr-save-btn {
        width: 100%;
        text-align: center;
    }
}

/* Forgot Password - Description Text */
.vr-fp-description {
    color: #666;
    font-size: 13px;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Forgot Password - Success State */
.vr-fp-success {
    text-align: center;
    padding: 10px 0;
}

.vr-fp-check-icon {
    width: 60px;
    height: 60px;
    background: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
    border-radius: 50%;
    font-size: 28px;
    line-height: 58px;
    margin: 0 auto 20px;
}

.vr-fp-success h3 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.vr-fp-success p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.vr-fp-back-btn {
    display: block;
    text-decoration: none;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vr-login-section {
        padding: 40px 0;
    }
    
    .vr-login-card {
        padding: 30px 20px;
    }
    
    .vr-login-header h1 {
        font-size: 24px;
        padding: 15px;
    }
    
    .vr-form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .vr-forgot-password {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .vr-login-card {
        padding: 20px 15px;
    }
    
    .vr-login-header h1 {
        font-size: 20px;
        padding: 12px;
    }
    
    .vr-form-input {
        padding: 12px;
        font-size: 14px;
    }
    
    .vr-login-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Header and Footer Integration */
.site-header {
    background: #2c3e50;
}

.site-footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

/* Ensure full height layout */
body.page-template-custom-login-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.page-template-custom-login-page .site-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
