/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ACHTERGROND – zelfde gradient als login */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: linear-gradient(180deg, #182C39 0%, #2563EB 100%);
    color: #fff;
}

/* BOVENSTE HEADER */
.top-text {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 70px;
    margin-bottom: 15px;
}

.top-text h2 {
    font-size: 26px;
    font-weight: 600;
}

.top-text .subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 6px;
    line-height: 1.4;
}

/* WITTE KAART */
.wrapper {
    width: 420px;
    background: #ffffff;
    color: #333;
    border-radius: 22px;
    padding: 40px 40px 45px;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.25);
}

/* TITELS */
.form-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.form-subtitle {
    text-align: center;
    margin-top: 4px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #555;
}

/* INPUTVELDEN */
.input-box {
    position: relative;
    width: 100%;
    margin-bottom: 18px;
}

.input-box input {
    width: 100%;
    padding: 14px 45px;
    border-radius: 12px;
    border: none;
    background: #F1F2F4;
    font-size: 15px;
    outline: none;
}

/* Icon links */
.input-box .icon-left {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
    font-size: 18px;
}

/* Icon rechts (oogje) */
.input-box .icon-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
    cursor: pointer;
    font-size: 18px;
}

/* TERMS-CONTAINER MET CHECKBOX */
.terms-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 20px;
    font-size: 12px;
    color: #666;
}

.terms-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2563EB;
    /* TrustBox blauw */
    cursor: pointer;
}

.terms-container label {
    line-height: 1.3;
    cursor: pointer;
}

.terms-container a {
    color: #2563EB;
    font-weight: 500;
    text-decoration: none;
}

/* BUTTON */
.btn {
    width: 100%;
    padding: 13px;
    background: #0F2F3F;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: 0.2s;
}

.btn:hover {
    opacity: 0.9;
}

/* LINK NAAR LOGIN */
.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.login-link a {
    color: #2563EB;
    font-weight: 600;
    text-decoration: none;
}

.showpassword {
    display: inline;
    font-size: 14.5 px;
    margin: -15px 23 15px;
    accent-color: #2563EB;

    justify-content: space-between;
}