﻿
.card-body-login {
    display: flex;
    flex-direction: column;
}

.auth-fluid {
    display: flex;
    height: 100vh;
    width: 100%;
    background: #111A51; /* Achtergrondkleur toegevoegd */
    /* Verwijder de background hier, want die gaat nu naar .auth-fluid-right */
}

/* Gebruik een meer specifieke selector om de andere CSS te overschrijven */
.auth-fluid .auth-fluid-form-box {
    background: white;
    width: 33.33%; /* 1/3 van het scherm */
    max-width: none; /* Overschrijf de max-width van 480px */
    padding: 5rem;
    border-top-right-radius: 1rem; /* Afgeronde hoekjes rechts */
    border-bottom-right-radius: 1rem;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1); /* Subtiele schaduw */
    z-index: 10; /* Hogere z-index om boven alles uit te komen */
    position: relative;
}

.auth-fluid-right {
    width: 66.67%; /* 2/3 van het scherm */
    background-color: #111A51; /* Achtergrondkleur toegevoegd */
    background-image: url("../assets/images/Round-Form-1-Dark.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80%; /* Uitgezoomd van cover naar 80% zodat de cirkel beter gecentreerd is */
}

.auth-fluid .auth-fluid-right
{
    background-color: #111A51; /* Achtergrondkleur toegevoegd */
}

.auth-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20; /* Zelfde z-index als vertical-center */
    position: relative;
}

.logo-title {
    font-size: 32px;
    font-weight: bold;
}

.logo-subtitle {
    font-size: 16px;
    color: #0057FF;
    text-align: right;
    justify-content: right !important;
}

.footer-alt {
    text-align: left;
}

.vertical-center {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    position: static;
    transform: none;
    width: 100%; /* Rekening houden met padding */
}

.allign-bottom {
    margin-bottom: 0 !important;
}

#roundedEdge {
    border-radius: 0.5rem;
}

/* Extra styling voor een mooier uiterlijk */
.form-control {
    border-radius: 0.375rem;
    border: 1px solid #e3e6f0;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--ct-main-color);
    box-shadow: 0 0 0 0.2rem rgba(114, 124, 245, 0.25);
}

.btn-primary-login {
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .auth-fluid {
        flex-direction: column;
    }

    .auth-fluid-form-box {
        width: 100%;
        padding: 1rem;
        border-radius: 0; /* Geen afgeronde hoekjes op mobiel */
        box-shadow: none;
    }
    
    .auth-fluid-right {
        width: 100%;
        height: 200px; /* Beperkte hoogte op mobiel */
    }

    .vertical-center {
        position: static;
        transform: none;
        width: 100%;
    }
}

@media (max-width: 991.98px) {
  .auth-fluid {
    display: block;
  }
  .auth-fluid .auth-fluid-form-box {
    max-width: 100%;
    width: auto;
    min-height: 100vh;
    border-radius: 0; /* Geen afgeronde hoekjes op mobiel */
  }
  .auth-fluid .auth-fluid-right {
    display: none;
  }

  .vertical-center {
        position: static;
        transform: none;
        width: 100%;
    }
}

@media (max-width: 1441px) {
    .auth-fluid .auth-fluid-form-box {
        padding: 2rem;
    }
}