﻿.modal-eidas {
    border-top: 1px solid #e5e5e5;
}

.login-dialog {
    max-width: 600px;
    width: 600px;
}

.login-dialog .modal-body label {
    font-weight: 700;
}

.buttonContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn {
    margin-bottom: 10px;
}

.devider {
    color: gray;
}

#qrcode {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 50px auto;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}