/**
 * Password Reset screen CSS
 * パスワードリセット画面用CSS
 */

/* Reset container */
.reset-container {
    max-width: 480px;
    margin: 80px auto;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Reset header */
.reset-header {
    text-align: center;
    margin-bottom: 24px;
}

.reset-header h2 {
    color: #181D27;
    font-size: 24px;
    margin-bottom: 8px;
    margin-top: 0;
}

.reset-header p {
    color: #717680;
    font-size: 13px;
    margin: 0;
}

/* Step indicator */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 0 8px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 28px;
    right: 28px;
    height: 2px;
    background: #E4E7EC;
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E4E7EC;
    color: #98A2B3;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
}

.step-item.active .step-circle {
    background: #007DD7;
    color: white;
}

.step-item.done .step-circle {
    background: #23A455;
    color: white;
}

.step-label {
    font-size: 11px;
    color: #98A2B3;
}

.step-item.active .step-label,
.step-item.done .step-label {
    color: #181D27;
    font-weight: 500;
}

/* Code input */
.code-input {
    font-size: 22px !important;
    letter-spacing: 12px;
    text-align: center;
    font-weight: 600;
}

/* Hint text */
.hint {
    font-size: 12px;
    color: #98A2B3;
    margin-top: 6px;
}

/* Password requirements */
.password-requirements {
    background: #F6F7F9;
    border: 1px solid #E4E7EC;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    color: #414651;
    line-height: 1.7;
    margin-bottom: 18px;
}

.password-requirements ul {
    padding-left: 18px;
    margin: 4px 0 0;
}

/* Resend area */
.resend-area {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: #717680;
}

.resend-link {
    background: none;
    border: none;
    color: #007DD7;
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
    padding: 0;
}

.resend-link:hover {
    text-decoration: underline;
}

/* Back link */
.back-link {
    display: block;
    margin-top: 18px;
    text-align: center;
    color: #98A2B3;
    font-size: 13px;
    text-decoration: none;
}

.back-link:hover {
    color: #007DD7;
    text-decoration: underline;
}

/* Success icon */
.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #D1FADF;
    color: #23A455;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Success message */
.success-message {
    text-align: center;
    color: #181D27;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Button link style */
.btn-link {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}

/* Alert success */
.alert-success {
    background-color: #D1FADF;
    color: #054F31;
    border: 1px solid #A6F4C5;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .reset-container {
        margin: 20px auto;
        padding: 24px;
    }

    .code-input {
        font-size: 18px !important;
        letter-spacing: 8px;
    }
}
