﻿body {
    background: #f3f3f9;
}
.container {
    width: 100% !important;
}
fieldset {
    background: none !important;
    border: none !important;
}

.rememberMe {
    display: inline-flex;
    margin-left: 0px !important;
}

    .rememberMe #remember {
        width: 20% !important;
        margin-top: 3px;
    }

    .rememberMe span {
        width: 180px;
    }
.pt-5 {
    padding-top: 5rem !important;
}

.auth-one-bg-position {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 380px;
}

.auth-one-bg {
    background-image: url(/images/authSecurity.jpg);
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.bg-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    opacity: 0.7;
    background-color: #000;
}

.auth-one-bg .bg-overlay {
    background: -webkit-gradient(linear, left top, right top, from(#364574), to(#405189));
    background: linear-gradient(to right, #182d43de, #282b13);
    opacity: 0.9;
}

.auth-one-bg .shape {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

    .auth-one-bg .shape > svg {
        width: 100%;
        height: auto;
        fill: #f3f3f9;
    }

.particles-js-canvas-el {
    position: relative;
}

.wText {
    color: #15283c;
}

.auth-page-wrapper .auth-page-content {
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.auth-page-content label {
    margin-bottom: 0px;
    font-size: 12px;
}

.signin {
    background: #2d3f56;
    color: #d4ccc0;
    border-color: #15283c;
    padding: 8px;
    border-radius: 20px;
}

    .signin:hover {
        background: #15283c;
        color: #fff;
    }

.form-control {
    margin-top: 5px;
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
}

.forgot {
    height: 20px;
    float: inherit;
    font-size: 12px;
}

    .forgot > .text-muted:hover {
        color: #c7b181 !important;
    }

.footer {
    background: #f3f3f9;
}

.small_text {
    font-size: 12px;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 3; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-backdrop {
    z-index: 2;
}

.modal-header {
    background: #fefefe;
    border-left: none;
}

.modal-footer {
    padding: 1rem;
    border: none;
}
/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 0px;
    border: 1px solid #888;
    width: 100%;
}

.b-r-10 {
    border-radius: 10px;
}

.errorMsg {
    font-size: 14px;
    display: contents;
}
/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.btn-primary {
    padding: 5px 30px;
    border-radius: 20px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
/*Button Spin*/
.button {
    position: relative;
    border: none;
    outline: none;
}

    .button:active {
        background: #15283c;
    }

.buttonText {
    transition: all 0.2s;
}

.buttonSpin .buttonText {
    visibility: hidden;
    opacity: 0;
}

.btnNoDrp {
    cursor: no-drop !important;
}

.buttonSpin::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-spinner 1s ease infinite;
}

@keyframes button-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}