/* =============================================
   Set New Password — SetNewPassword.css
   ============================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.snp-page {
    display: flex;
    min-height: 100vh;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* ══════════════════════════════
   LEFT PANEL — Orange (same as others)
══════════════════════════════ */
.snp-left {
    flex: 0 0 50%;
    max-width: 50%;
    background: #FF4B00;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding: 60px 40px;
}

    /* Outer circle 30% */
    .snp-left::before {
        content: '';
        position: absolute;
        width: 480px;
        height: 480px;
        border-radius: 50%;
        background: linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 100%);
        top: 40%;
        left: 50%;
        transform: translate(-50%, -42%);
        z-index: 0;
    }

    /* Inner circle 15% */
    .snp-left::after {
        content: '';
        position: absolute;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
        top: 40%;
        left: 50%;
        transform: translate(-50%, -38%);
        z-index: 1;
    }

.snp-left-top {
    position: relative;
    z-index: 2;
    width: 100%;
}

.snp-mockup {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: center;
}

    .snp-mockup img {
        width: 100%;
        height: auto;
        margin-top: 100px;
        margin-left: 40px;
        object-fit: contain;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
    }

.snp-left-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.snp-left-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.snp-left-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.88);
    line-height: 1.6;
    max-width: 360px;
    margin: 0 auto;
}

/* ══════════════════════════════
   RIGHT PANEL — White
══════════════════════════════ */
.snp-right {
    flex: 1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
}

/* Brand */
.snp-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 52px;
}

.snp-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
}

.snp-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Content */
.snp-content {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.snp-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-align: center;
}

.snp-subtitle {
    font-size: 14px;
    color: #888888;
    text-align: center;
    line-height: 1.65;
    margin-bottom: 40px;
}

/* Form */
.snp-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.snp-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.snp-label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Password input with eye icon */
.snp-password-wrap {
    display: flex;
    align-items: center;
    height: 56px;
    background: #F5F5F5;
    border: 1.5px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

    .snp-password-wrap:focus-within {
        border-color: #FF4B00;
        background: #ffffff;
    }

.snp-password-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 18px;
    font-size: 15px;
    color: #333333;
    outline: none;
    font-family: inherit;
    height: 100%;
}

    .snp-password-input::placeholder {
        color: #aaaaaa;
    }

.snp-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 100%;
}

    .snp-toggle:hover svg {
        stroke: #FF4B00;
    }

/* Reset Button */
.snp-btn {
    width: 100%;
    height: 56px;
    background: #FF4B00;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.3px;
    margin-top: 20px;
    transition: background 0.2s, transform 0.15s;
}

    .snp-btn:hover {
        background: #e04200;
        transform: translateY(-1px);
    }

    .snp-btn:active {
        transform: translateY(0);
    }

/* ── Responsive ── */
@media (max-width: 900px) {
    .snp-page {
        flex-direction: column;
    }

    .snp-left {
        flex: none;
        max-width: 100%;
        min-height: 360px;
        padding: 48px 32px;
    }

    .snp-right {
        padding: 40px 32px;
    }
}

@media (max-width: 480px) {
    .snp-right {
        padding: 32px 20px;
    }

    .snp-left-title {
        font-size: 22px;
    }

    .snp-title {
        font-size: 24px;
    }
}
/* ══ Success Screen ══ */
#successScreen {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.success-card {
    position: relative;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.success-stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    height: auto;
    opacity: 0.8;
}

.star-tl {
    top: 40px;
    left: 40px;
    width: 25px;
    height: 25px;
}

.star-tr {
    top: 50px;
    right: 45px;
    width: 20px;
    height: 20px;
}

.star-bl {
    bottom: 190px;
    left: 50px;
    width: 20px;
    height: 20px;
}

.star-br {
    bottom: 200px;
    right: 35px;
    width: 25px;
    height: 25px;
}

.success-badge {
    width: 80px;
    height: 80px;
/*    background: #FF4B00;*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-badge-img {
    width: 108px;
    height: 108px;
    object-fit: contain;
/*    filter: brightness(0) invert(1);*/
}

.success-text {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.6;
    margin-top: 50px;
}

.success-btn {
    width: 50%;
    height: 52px;
    background: #FF4B00;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    transition: background 0.2s, transform 0.15s;
    margin-bottom: 4px;
    margin-top: 20px;
}

    .success-btn:hover {
        background: #e04200;
        transform: translateY(-1px);
    }