/* accounts/static/css/accounts.css */

.auth-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

.auth-header h1 {
    border-bottom: 2px solid #e67e22;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.auth-form-group {
    margin-bottom: 1.5rem;
}

.auth-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.seller-toggle-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff8f2;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed #e67e22;
}

/* Progress Bar */
.progress-wrapper {
    margin-bottom: 30px;
}
.progress-track {
    background: #eee;
    height: 8px;
    border-radius: 4px;
    width: 100%;
}
.progress-fill {
    background: #e67e22;
    height: 100%;
    border-radius: 4px;
    transition: width 0.4s ease;
}
.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

/* Logout Specific (Parchment Style) */
.logout-container {
    max-width: 600px;
    margin: 80px auto;
    text-align: center;
    padding: 40px 20px;
    background: #fffaf0; 
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}
.owl-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}