﻿body, body * {
    font-family: 'Montserrat', sans-serif !important;
}

.main-content {
    height: 100vh;
    width: 100vw;
    background: linear-gradient(135deg, #dde1ff 0%,#0373c4 50%,#1e5799 100%);
    overflow: auto;
}

    .main-content::before {
        content: ' ';
        position: absolute;
        bottom: 0;
        right: 0;
        background-image: url("../assets/images/globe-background.jpg");
        width: 100%;
        height: 100%;
        z-index: 0;
        mix-blend-mode: overlay;
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 0.2;
        z-index: -1;
    }

    .main-content .container {
        display: flex;
        width: 100%;
    }

.logo-image {
    width: 250px;
    height: 80px;
    background-size: cover;
    margin: 17px 0 0 40px;
}

.login-container {
    background-color: white;
    width: 93%;
    border-radius: 5px;
    padding: 30px 60px 30px 60px;
}

.continue-text {
    color: #234F66;
    font-size: 21px;
    font-weight: normal;
    text-align: center;
    margin: 12px 0 25px 0;
}

.login-container .form-group {
    margin: 0 0 30px 0;
    position: relative;
}

.login-container .after-holder:focus-within:before {
    left: 0;
    right: 0;
}

.login-container .after-holder:focus-within:before {
    left: 0;
    right: 0;
}

.login-container .after-holder:before {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: #2980b9;
    height: 2px;
    transition-property: left right;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}



.login-container .after-holder svg {
    width: 25px;
    height: 25px;
    position: absolute;
    bottom: 10px;
    color: #dddddd;
}

.login-container label {
    font-size: 16px;
    font-weight: bold;
    color: #bfadad;
    margin: 0;
    display: block;
    transition: all 0.5s;
}

.login-container .after-holder:focus-within svg {
    color: #234F66;
}

.login-container .after-holder:focus-within label {
    color: #000;
    font-weight: bolder;
}

.login-container input[type="text"], .login-container input[type="password"] {
    border: 0;
    border-radius: 0;
    border-bottom: 2px solid #bfadad;
    padding: 8px 0 8px 40px;
    font-size: 21px;
    color: #000;
    font-weight: bold;
    margin: 0;
    display: block;
}

.login-container .form-control:focus {
    outline: 0;
    -moz-outline-style: none;
    -webkit-outline-style: none;
    outline-style: none;
    box-shadow: none;
}

.login-container .remember-me label {
    position: relative;
    color: #5d787b;
    font-weight: normal;
    display: block;
    padding: 15px 0 15px 40px;
}

.login-container label {
    font-size: 16px;
    font-weight: bold;
    color: #bfadad;
    margin: 0;
    display: block;
    transition: all 0.5s;
}

.login-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.login-container .checkmark {
    position: absolute;
    top: 15px;
    left: 5px;
    height: 23px;
    width: 23px;
    border-radius: 3px;
    background-color: #eee;
}

.login-container input:checked ~ .checkmark:after {
    display: block;
}

.login-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.login-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

.login-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.login-container .login-button button {
    width: 100%;
    font-size: 21px;
    background-color: #D8464A;
    border: none;
    padding: 10px 0;
    border-radius: 4px;
}

.intro-text {
    padding: 60px;
    color: #fff;
    padding-right: 135px;
}

    .intro-text h3 {
        font-weight: bold;
    }

    .intro-text a {
        color: #ff8e8e;
        font-weight: bold;
        text-decoration: none;
    }

        .intro-text a:hover {
            color: #fff;
        }

.custom-modal .modal-title {
    color: #666;
    font-size: 28px;
    text-align: center;
    width: 100%;
    font-weight: 400;
    margin: 12px auto 12px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

    .custom-modal .modal-title svg {
        color: #dc3545;
        width: 80px;
    }

.custom-modal .modal-body {
    padding: 20px;
    text-align: center;
    font-size: 16px;
    background-color: #eee;
}

.custom-modal .modal-footer {
    padding: 0;
}

.custom-modal button {
    margin: 0;
    width: 100%;
}

.custom-modal .btn-danger {
    background-color: #c7767e;
    border-color: #c7767e;
}

.custom-modal .btn {
    border-radius: 0;
}

@media (max-device-width:480px) {
    .main-row {
        flex-direction: column-reverse;
    }

    .logo-container {
        text-align: center;
    }

    .intro-text {
        padding: 16px;
    }

    .login-page {
        justify-content: center !important;
    }

    .login-container {
        padding-right: 20px px;
        padding-left: 20px;
        margin-bottom: 15px;
    }
}

@media (min-device-width:750px) and (max-device-width:850px) {
    .intro-text {
        padding: 16px;
    }

    .login-container {
        width: 100%;
    }
}
