﻿:root {
    --bs-font-sans-serif: 'Noto Sans', sans-serif !important;
    --bs-blue: #10689D !important;
    --bs-primary: #10689D !important;
    --bs-primary-rgb: 16,104,157 !important;
    --bs-btn-bg: #10689D !important;
    --bs-btn-border-color: #10689D !important;
    --bs-btn-hover-bg: #10689D !important;
    --bs-btn-hover-border-color: #10689D !important;
    --bs-btn-hover-color: #10689D !important;
    --bs-form-invalid-border-color: #f28100 !important;
    --bs-danger-rgb: 242, 129, 0;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.form-check-input {
    width: 16px !important;
    height: 16px !important;
    margin: 0; /* Remove default margin */
    flex-shrink: 0; /* Prevent shrinking */
}

.form-check-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px; /* Match the input height for perfect alignment */
    color: #394754;
    margin: 0; /* Remove default margin */
    cursor: pointer;
}

.form-check-input:checked[type=radio] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23162029'/%3e%3c/svg%3e");
}

.form-check-input:checked {
    background-color: #fff;
    border-color: #909FAE;
}

.form-check-input:focus {
    border-color: #162029;
    outline: 0;
    box-shadow: none; 
}


.form-control.is-invalid, .was-validated .form-control:invalid {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f28100'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f28100' stroke='none'/%3e%3c/svg%3e");
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #10689D;
    --bs-btn-border-color: #10689D;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #10689D;
    --bs-btn-hover-border-color: #10689D;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #10689D;
    --bs-btn-active-border-color: #10689D;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

.btn-outline-primary {
    --bs-btn-color: #10689D;
    --bs-btn-border-color: #10689D;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #10689D;
    --bs-btn-hover-border-color: #10689D;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #10689D;
    --bs-btn-active-border-color: #10689D;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0d6efd;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0d6efd;
    --bs-gradient: none;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

    .form-group > .input-label {
        line-height: 20px;
        font-weight: 400;
        font-size: 16px;
        align-self: flex-start;
        margin-bottom: 12px;
        color: #5C5E60;
    }

    .form-group > .radio-button-list {
        max-height: 160px;
        width: 315px;
        overflow-y: auto;
    }

.error-message {
    line-height: 20px;
    font-weight: 400;
    font-size: 12px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    align-self: flex-start;
    color: #B33706;
}

    .error-message::before {
        color: #D34501;
        width: 14px;
        height: 14px;
        content: url('/_content/MRI.Agora.Identity.Web.Shared/img/notifications/warning.svg');
        display: inline-block;
        margin-right: 8px;
        vertical-align: middle;
    }

.btn {
    border-radius: 4px;
    width: 100%;
    padding: 10px;
    margin: 8px 0;
}

.footer-links-container{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 8px;
}

.footer-links {
    color: #10689D;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* loader */

#splash-container {
    background: #fff url('/_content/MRI.Agora.Identity.Web.Shared/img/blue-waves-background-large.png') center no-repeat fixed;
    background-size: cover;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    min-width: 100vw;
    z-index: 9999;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

#splash-small-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    position: relative;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#splash-svg {
    margin: auto;
    filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.15));
    animation: rotation 4.25s infinite linear;
}

#splash-img {
    width: 183px;
    height: 108px;
    display: block;
    margin: auto;
}

#circle {
    width: 500px;
    height: 500px;
    border-radius: 9999px;
    background-color: transparent;
    margin: auto;
}

#splash-svg,
#splash-img,
#circle {
    grid-column: 2/3;
    grid-row: 2/3;
}

@media screen and (max-width: 1200px) {
    #splash-svg,
    #splash-img,
    #circle {
        zoom: 80%;
    }
}

@media screen and (max-width: 992px) {
    #splash-svg,
    #splash-img,
    #circle {
        zoom: 70%;
    }
}

@media screen and (max-width: 576px) {
    #splash-svg,
    #splash-img,
    #circle {
        zoom: 50%;
    }
}

@media screen and (max-width: 375px) {
    #splash-svg,
    #splash-img,
    #circle {
        zoom: 35%;
    }
}