@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Algemene instellingen */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #007bff, #0056b3);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Achtergrond effect */
body::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('/static/images/bg-pattern.svg') no-repeat center center/cover;
    opacity: 0.15;
}

/* Wrapper voor login */
.login-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Login Card */
.login-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Titel en ondertitel */
.login-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
}

.login-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Inputvelden */
.login-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    background: #f8f9fc;
}

/* Login knop */
.login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.login-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003c80);
}

/* Wachtwoord vergeten */
.forgot-password {
    margin-top: 12px;
}

.forgot-password a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}
