@import url("./login.css");

.reset-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: clamp(16px, 4vh, 30px);
}

.reset-card {
    width: min(100%, 460px);
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, .15);
    border-radius: 18px;
    padding: clamp(22px, 4vh, 34px);
    box-shadow: var(--shadow);
}

.reset-card .header h1 {
    font-size: clamp(24px, 4vh, 30px);
    letter-spacing: 0;
}

.reset-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 18px;
}
