﻿.logo-style {
    width: 46%;
}

.title-style {
    width: 70%;
    margin: 0 auto;
    font-size: 25px;
    font-weight: 600;
}

.domain-link-style {
    width: 35%;
}

.custom-path-style {
    width: 60%;
}

label {
    font-size: 14px;
}

.form-control-lg {
    font-size: 14px;
}

.btn-custom {
    color: white;
    border-color: #039047;
    background-color: #039047;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
}

    .btn-custom:hover {
        color: white;
        border-color: #039047;
        background-color: #039047;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 400;
        opacity: 0.9;
    }

.btn-outline-custom {
    color: #039047;
    border-color: #039047;
    background-color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
}

    .btn-outline-custom:hover {
        color: #039047;
        border-color: #039047;
        background-color: white;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 400;
        opacity: 0.9;
    }

.login-question-style {
    font-size: 15px;
    color: #868E96;
}

.login-text-style {
    color: #039047;
    text-decoration: underline;
}

#recaptcha {
    position: absolute;
}

.toast-wrapper {
    display: block;
}

.toast-container {
    position: absolute;
    top: 0;
    right: 0;
}

#loadingIndicator {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #039047;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 1365px) {
    .logo-style {
        width: 45%;
        margin-bottom: 14px !important;
    }

    .title-style {
        font-size: 23px;
    }

    .login-question-style {
        font-size: 14px;
    }
}

@media only screen and (max-width: 600px) {
    .logo-style {
        width: 65%;
        margin-bottom: 15px !important;
    }

    .title-style {
        width: 88%;
        margin: 0 auto;
        font-size: 20px;
        font-weight: 600;
    }

    .domain-link-style {
        width: 41%;
    }

    .custom-path-style {
        width: 51%;
    }

    .toast-wrapper {
        display: flex;
        justify-content: center;
    }

    .toast-container {
        position: absolute;
        top: 0;
        right: unset;
    }
}

@media only screen and (max-width: 411px) {
    .logo-style {
        width: 60%;
        margin-bottom: 15px !important;
    }

    .title-style {
        width: 88%;
        margin: 0 auto;
        font-size: 18px;
        font-weight: 600;
    }

    .login-question-style {
        font-size: 13px;
    }
}