.forgot-password-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 20px;
}

.card {
    width: 100%;
    max-width: 450px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.card-header {
    background: #f85606;
    color: white;
    padding: 20px;
    border: none;
}

.card-header h3 {
    margin: 0;
    font-size: 24px;
}

/* Progress Indicator */
.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: #fff;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #f85606;
    color: white;
}

.progress-step.completed .step-number {
    background: #28a745;
    color: white;
}

.step-label {
    font-size: 14px;
    color: #666;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    margin: 0 15px;
    margin-bottom: 25px;
}

.progress-line.active {
    background: #f85606;
}

/* Step Content */
.step-content {
    display: none;
    padding: 30px;
}

.step-content.active {
    display: block;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

/* Verification Code Input */
.verification-code-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.code-input {
    width: 45px;
    height: 45px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.code-input:focus {
    border-color: #f85606;
    outline: none;
}

/* Password Requirements */
.password-requirements {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.password-requirements p {
    margin-bottom: 8px;
    font-weight: 500;
}

.password-requirements ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.password-requirements li {
    margin-bottom: 5px;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.password-requirements li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.password-requirements li.valid::before {
    content: '✓';
    color: #28a745;
}

/* Success Animation */
.success-animation {
    margin: 20px 0;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #28a745;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #28a745;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #28a745;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #28a745;
    }
}

/* Error Messages */
.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px;
}

/* Responsive */
@media (max-width: 576px) {
    .progress-container {
        padding: 20px;
    }

    .step-content {
        padding: 20px;
    }

    .verification-code-container {
        gap: 5px;
    }

    .code-input {
        width: 40px;
        height: 40px;
    }
} 