/* ============================================================
   Seller Register – Shared Styles
   Used by: Register.cshtml, ApplyAsSeller.cshtml, Confirmation.cshtml
   ============================================================ */

/* ----- Page wrapper ----- */
.sr-page {
    font-family: "Jost", sans-serif !important;
    padding: 80px 0 60px;
    min-height: 80vh;
    position: relative;
    background-image: url(/webbg.png);
    background-size: cover;
    background-position: center;
    color: white;
    z-index: 1;
}

/* Dark overlay – same as #hero::before */
.sr-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.45;
    z-index: -1;
}

.sr-page.sr-center {
    display: flex;
    align-items: center;
}

/* ----- Card ----- */
.sr-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

/* ----- Header badge ----- */
.sr-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #47e475, #00b894);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
    color: white;
}

.sr-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.sr-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 0;
}

/* ----- Section header inside form ----- */
.sr-section-header {
    color: #47e475;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(71, 228, 117, 0.3);
    padding-bottom: 8px;
    margin-bottom: 18px;
}

/* ----- Inputs ----- */
.sr-input {
    height: 48px;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px;
    padding: 0.375rem 16px;
    font-size: 0.95rem;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.sr-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.sr-input:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.sr-input:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(71, 228, 117, 0.6) !important;
    box-shadow: 0 0 0 3px rgba(71, 228, 117, 0.1) !important;
    outline: none;
    color: white !important;
}

.sr-textarea {
    height: auto !important;
    resize: vertical;
}

/* ----- Radio / gender ----- */
.sr-radio-label {
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 14px;
}

.form-check-input:checked {
    background-color: #47e475;
    border-color: #47e475;
}

.form-check-input:focus {
    border-color: #47e475;
    box-shadow: none;
}

/* ----- Info boxes ----- */
.sr-user-box {
    background: rgba(71, 228, 117, 0.08);
    border: 1px solid rgba(71, 228, 117, 0.25);
    border-radius: 10px;
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.sr-notice-box {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 10px;
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

/* ----- Submit button ----- */
.btn-sr-submit {
    background: linear-gradient(135deg, #47e475, #00b894);
    border: 0;
    padding: 14px 34px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 0.5px;
}

.btn-sr-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(71, 228, 117, 0.35);
}

/* ----- Links ----- */
.sr-page a {
    color: #47e475;
    text-decoration: underline;
}

.sr-page a:hover {
    opacity: 0.85;
}

.sr-muted {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   Confirmation page specific
   ============================================================ */
.sr-icon-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 44px;
}

.sr-icon-success {
    background: linear-gradient(135deg, #47e475, #00b894);
    color: white;
    animation: sr-pop 0.5s ease;
}

.sr-icon-pending {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

@keyframes sr-pop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.sr-confirm-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin-bottom: 20px;
}

.sr-confirm-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.sr-steps-box {
    background: rgba(71, 228, 117, 0.05);
    border: 1px solid rgba(71, 228, 117, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.sr-step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 12px;
}

.sr-step-item:last-child {
    margin-bottom: 0;
}

.sr-step-num {
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #47e475, #00b894);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ----- Action buttons (Confirmation) ----- */
.btn-sr-home,
.btn-sr-login {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn-sr-home {
    background: linear-gradient(135deg, #47e475, #00b894);
    color: white !important;
}

.btn-sr-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(71, 228, 117, 0.35);
    color: white !important;
}

.btn-sr-login {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85) !important;
}

.btn-sr-login:hover {
    background: rgba(255, 255, 255, 0.18);
    color: white !important;
}