.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


/* Fullscreen grey transparent overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Grey with transparency */
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    z-index: 9999; /* On top of everything */
}

/* Loading spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid white; /* Solid top border for the spinner effect */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.maxWidthTextField{
    max-width:500px;

}

.govcy-image {
    height: auto; /* Maintains the aspect ratio */
}

.govcy-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: top;
    gap: 20px; /* Optional spacing between the content */
}

.govcy-link {
    cursor: pointer;
}

.euroSign {
    font-size: 30px;
    margin-right: 5px;
}


.authorizationLoginDiv {
    max-width: 800px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 200px !important;
}

.govcy-cms-section-wrapper {
    padding-top: 1.25rem;
    margin-bottom: 1.5rem;
}

.govcy-cms-section-wrapper > div.govcy-cms-section {
    border-top: 1px solid #bbbcbf;
    padding-top: 1.25rem !important;
}