* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: 'Inter', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: var(--background, #f7f9f9);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.form-1 {
    display: flex;
    flex-direction: column;
    background: var(--card-bg, #ffffff);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

h5 {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 500;
    color: var(--text, #2f3e46);
    text-align: center;
}

.grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.row {
    /* 2FA-pagina's wikkelen elke input in .row; compensatie voor het ontbreken van .grid gap */
    padding-bottom: 12px;
}

.row:last-child {
    padding-bottom: 0;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e0e6e8;
    font-size: 14px;
    color: #424242;
    transition: all 0.2s ease;
}

input:focus {
    border-color: var(--primary, #3a8d8f);
    box-shadow: 0 0 0 3px rgba(58, 141, 143, 0.15);
}

input::placeholder {
    color: var(--muted, #7a8a90);
}

.button {
    margin-top: 16px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: var(--primary, #3a8d8f);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.text-danger {
    margin-bottom: 10px;
    font-size: 13px;
    color: #d64545;
    list-style: none;
}

.validation-summary-errors ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.divider {
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--muted, #7a8a90);
}

span {
    color: var(--primary, #3a8d8f);
    cursor: pointer;
}

p {
    text-align: center;
    line-height: 1.55;
    margin-bottom: 20px;
}
