body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f8fc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.reset-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reset-container h2 {
    margin-bottom: 1.5rem;
    font-size: 1.875rem; /* 24px */
    font-weight: 700;
    color: #1a202c;
}

.reset-container .form-control {
    margin-bottom: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid #cbd5e0;
    width: 100%;
    transition: border-color 0.3s ease;
}

.reset-container .form-control:focus {
    border-color: #1a75bb;
    outline: none;
}

.reset-container .btn-primary {
    background-color: #1a75bb;
    border: none;
    border-radius: 0.375rem;
    padding: 0.75rem;
    font-size: 1rem;
    width: 100%;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reset-container .btn-primary:hover {
    background-color: #144a74;
    transform: translateY(-2px);
}

.reset-container .btn-primary:disabled {
    background-color: #1a75bb;
    opacity: 0.6;
    cursor: not-allowed;
}

.steps {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0.5rem;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e2e8f0;
    color: #1a202c;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.step-name {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #1a202c;
}

.step.active .step-number {
    background-color: #1a75bb;
    color: #fff;
}

.step-line {
    width: 50px;
    height: 2px;
    background-color: #e2e8f0;
    position: relative;
    top: 14px;
    transition: background-color 0.3s ease;
}

.step-line.active {
    background-color: #1a75bb;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active in <2.1.8 */ {
    opacity: 0;
}

.message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    text-align: center;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
}

.spinner {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-left-color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    margin-right: 10px;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-secondary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
