* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Source Sans Pro', sans-serif;
}

.illustration {
    width: 40vw;
}

.login-card {
    position: relative;
    width: 450px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 2px solid #211c4e;
}

.app-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.logo-payments {
    width: 12rem;
}

.app-welcome {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 2.5rem !important;;
}

h2 {
    font-size: 2rem;
    color: #211c4e;
}

.card-login {
    background: #fff;
    border: 2px solid #211c4e;
    width: 230px;
    height: 250px;
    text-align: center;
    margin: 1rem 10px;
    transition: .5s;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.card-login::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 180%;
    right: 1.6rem;
    top: -6rem;
    background: linear-gradient(#50e2d0, #322b78);
    animation: animate 3s linear infinite;
    z-index: 1;
    opacity: 0;
}

.card-login::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: #fff;
    border-radius: 16px;
    z-index: 1;
    opacity: 0;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.card-login .logo {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    line-height: 60px;
    margin: auto;
    font-size: 1.5rem;
    color: #211c4e;
    border: 2px solid #211c4e;
    background: #fff;
    position: relative;
    top: 50px;
    transition: .5s;
    z-index: 2;
}

.card-login h1 {
    font-size: 30px;
    color: #211c4e;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    top: 80px;
    transition: .5s;
    z-index: 2;
}

.card-login p {
    font-size: 15px;
    color: #211c4e;
    line-height: 26px;
    font-weight: 300;
    margin: 2.5rem 1.5rem 0 1.5rem;
    opacity: 0;
    transition: .2s;
    position: relative;
    top: 20px;
    z-index: 2;
}

.card-login:hover::before {
    opacity: 1;
}

.card-login:hover::after {
    opacity: 1;
}

.card-login:hover {
    cursor: pointer;
}

.card-login:hover .logo {
    width: 80px;
    height: 60px;
    border-radius: 15px;
    top: -11px;
    transition: .5s;
}

.card-login:hover h1 {
    top: 25px;
    transition: .5s;
}

.card-login:hover p {
    opacity: 1;
    transition: .5s;
}

.card-login:hover:nth-child(1) {
    opacity: 1;
    transition: .5s;
}

.modal-body {
    overflow: scroll;
}

.eherkenning-logo {
    width: 45px;
    position: relative;
    top: -5px;
    transition: .5s;
}

.card-login:hover .eherkenning-logo  {
    width: 60px;
    top: -2px;
    transition: .5s;
}