/* Container styling die matcht met je bewerk-modal */
.gate-container {
    padding: 44px 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    background: #fff;
    border: 2px solid rgba(0,0,0,0.07);
    border-radius: 18px;
    margin: 10px 8px;
}

.gate-content {
    max-width: 320px;
    width: 100%;
}

.gate-text {
    color: #111;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Wachtwoord wrapper voor het oogje */
.password-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.gate-input {
    width: 100%;
    padding: 12px 45px 12px 15px; 
    border-radius: 8px;
    border: 1px solid #b3e5ff;
    font-size: 1rem;
    background: #fafbfc;
    box-sizing: border-box;
    transition: border 0.2s;
}

.gate-input:focus {
    border-color: #0099FF;
    outline: none;
    box-shadow: 0 0 0 2px #b3e0ff;
}

#togglePassword {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.5;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

#togglePassword:hover {
    opacity: 1;
}

/* De Blauwe 3D Button */
.gate-button-blue {
    background: #0099FF !important;
    color: #fff !important;
    border: none !important;
    border-radius: 15px !important;
    padding: 13px 0 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: inset 0 -4px 0 rgba(0,122,204,0.4) !important;
    transition: background 0.2s, transform 0.1s;
    width: 100%;
    display: block;
    text-transform: uppercase;
}

.gate-button-blue:active {
    background: #007acc !important;
    transform: translateY(2px);
    box-shadow: inset 0 -2px 0 rgba(0,122,204,0.4) !important;
}

.gate-error {
    color: #d32f2f;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 10px;
}