@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* INDEX.HTML */
body {
    font-family: 'DM Sans', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
    margin: 0;
}

img {
    margin-bottom: 50px;
}

form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input[type="text"], input[type="password"] {
    width: 91%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition-duration: 200ms;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    
    /* NIEUW: Zorg voor een vaste hoogte en padding voor de spinner */
    min-height: 40px; /* Zorgt dat de knop niet krimpt */
    display: flex; /* Maakt centering van de spinner + tekst mogelijk */
    align-items: center; /* Verticale centrering */
    justify-content: center; /* Horizontale centrering */
}

input[type="submit"]:hover {
    transition-duration: 200ms;
    background-color: #0069d9;
}

input[type="submit"]:active {
    background-color: #005cbf;
}

