.forgot-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 20px;
}

.forgot-password-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.back-to-login {
    margin-top: 20px;
    text-align: center;
}

.back-to-login a {
    color: #064420;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-to-login a:hover {
    color: #f58220;
    text-decoration: underline;
}

.instructions {
    background: #f0f8f0;
    border: 1px solid #064420;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
}

.instructions h4 {
    color: #064420;
    margin-bottom: 10px;
    font-size: 14px;
}

.instructions ul {
    margin: 0;
    padding-left: 20px;
    color: #333;
}

.instructions li {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step.active:not(:last-child)::after {
    background: #064420;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #757575;
    position: relative;
    z-index: 2;
}

.step.active .step-circle {
    background: #064420;
    border-color: #064420;
    color: white;
}

.step.completed .step-circle {
    background: #f58220;
    border-color: #f58220;
    color: white;
}

.step.completed .step-circle::after {
    content: '✓';
    font-size: 16px;
}

.step-label {
    margin-top: 8px;
    font-size: 12px;
    color: #757575;
    text-align: center;
}

.step.active .step-label {
    color: #064420;
    font-weight: 600;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.resend-code {
    margin-top: 15px;
    font-size: 14px;
    color: #757575;
}

.resend-code a {
    color: #064420;
    text-decoration: none;
    font-weight: 500;
}

.resend-code a:hover {
    color: #f58220;
    text-decoration: underline;
}

.countdown {
    color: #f58220;
    font-weight: 600;
}

/* Success state */
.success-state {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 64px;
    color: #064420;
    margin-bottom: 20px;
}

.success-state h2 {
    color: #064420;
    margin-bottom: 10px;
}

.success-state p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Forgot Password specific input styles */
.forgot-password-box .input-box-login {
    margin: 15px 0;
}

.forgot-password-box .btn {
    margin-top: 20px;
}

.forgot-password-box h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #064420;
    font-weight: 700;
}

.forgot-password-box p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 25px;
}

/* Media Queries for Forgot Password */
@media screen and (max-width: 650px) {
    .forgot-password-box {
        padding: 30px 25px;
        margin: 15px;
    }
    
    .step-indicator {
        margin-bottom: 25px;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 11px;
    }
    
    .instructions {
        padding: 12px;
    }
    
    .success-icon {
        font-size: 48px;
    }
}

@media screen and (max-width: 480px) {
    .forgot-password-box {
        padding: 25px 20px;
        margin: 10px;
    }
    
    .step-indicator {
        margin-bottom: 20px;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .step:not(:last-child)::after {
        top: 16px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .forgot-password-box h1 {
        font-size: 24px;
    }
    
    .instructions {
        padding: 10px;
    }
    
    .instructions h4 {
        font-size: 13px;
    }
    
    .instructions li {
        font-size: 12px;
    }
    
    .success-icon {
        font-size: 40px;
    }
    
    .success-state h2 {
        font-size: 22px;
    }
    
    .success-state p {
        font-size: 14px;
    }
}

@media screen and (max-width: 360px) {
    .forgot-password-box {
        padding: 20px 15px;
    }
    
    .step-circle {
        width: 30px;
        height: 30px;
    }
    
    .step:not(:last-child)::after {
        top: 15px;
    }
    
    .forgot-password-box h1 {
        font-size: 22px;
    }
}