.forgot-password-section {
    padding: 150px 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.forgot-password-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    padding: 40px;
}

.back-to-login {
    text-align: center;
    margin-top: 25px;
    color: #666;
}

.back-to-login a {
    color: #4a6cf7;
    text-decoration: none;
    font-weight: 500;
}

.back-to-login a:hover {
    text-decoration: underline;
}

.steps-container {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.step-number {
    background-color: #4a6cf7;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .forgot-password-container {
        padding: 30px 20px;
    }
}