.auth-wrapper {
    margin: 0 auto;
    max-width: 600px;
    padding: 20px 0;
}

.account-wrapper {
    max-width: 960px;
    padding: 20px 0;
    margin: 0 auto;
}

.account-wrapper > article > h2 {
    border-top: 1px dotted #ccc;
    padding-top: 20px;
}

.account-wrapper > article > h2:first-of-type {
    border-top: none;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 20px;
}

.grid > a {
    color: #333;
    position: relative;
}

.grid > a .korting {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #14B91A;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: #333 0px 0px 3px;
}

.grid > a:hover {
    border-bottom: none;
}

.grid > a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.form-group {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 10px 0;
}

.form-group input {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.wachtwoord-wrapper {
    position: relative;
    width: 100%;
}

.wachtwoord-wrapper input {
    width: 100%;
    padding-right: 30px; /* Space for the eye icon */
}

.wachtwoord-toggle {
    position: absolute;
    top: 11px;
    right: 10px;
    cursor: pointer;
}

@media only screen and (min-width: 980px) {
    
}

@media only screen and (min-width: 650px) and (max-width: 979px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .account-wrapper,
    .auth-wrapper {
        padding: 20px;
    }
}

@media only screen and (min-width: 0) and (max-width: 649px) {
    .grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .account-wrapper,
    .auth-wrapper {
        padding: 20px;
    }
}