﻿/* CONTENEDOR */
.reset-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: var(--rz-base-default);
}

/* CARD */
.reset-card {
    width: 100%;
    max-width: 460px;
    padding: 2rem;
    border-radius: 20px;
    background: var(--rz-base-default);
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

/* HEADER */
.reset-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

    .reset-header h2 {
        font-weight: 800;
        margin: .5rem 0;
    }

    .reset-header p {
        font-size: .85rem;
        color: var(--rz-text-secondary-color);
    }

/* ICONO */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--rz-success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

    .icon-circle .rz-icon {
        font-size: 2.5rem;
        color: var(--rz-primary);
    }

/* SECCIONES */
.reset-section {
    margin-bottom: 1.5rem;
}

.section-label {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: .5rem;
    color: var(--rz-text-secondary-color);
}

/* CODIGO DESTACADO */
.reset-section.codigo {
    text-align: center;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(var(--rz-primary-rgb), .05);
    border: 1px dashed rgba(var(--rz-primary-rgb), .2);
}

/* PASSWORDS */
.reset-section.passwords {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* BOTONES */
.reset-actions {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

    .reset-actions .rz-button {
        width: 100%;
        height: 50px;
        border-radius: 12px;
    }

/* MOBILE */
@media (max-width: 480px) {
    .reset-card {
        padding: 1.5rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }
}
