/*login*/

html,
body {
    height: 100%;
}

.center {
    text-align: center;
}

.bg-image {
    background-image: url(../../images/login2.png);
    background-size: cover;
    background-position: top left;
    width: 100%;
    /* height: 100%; */
    /* position: absolute; */
}


/* 
[18:04, 15/08/2022] Tiago Félix: #0b0024
[18:04, 15/08/2022] Tiago Félix: o azul
[18:04, 15/08/2022] Tiago Félix: #b73234
[18:04, 15/08/2022] Tiago Félix: vermelho ele é meio degradê mas esse ai fica no meio
[18:05, 15/08/2022] Tiago Félix: tem o amarelo la tbm #e3ba61
*/

.bg-imag {
    background: -webkit-linear-gradient(to bottom right, #b73234, #b73234, #0b0024, #b73234, #b73234);
    background: -o-linear-gradient(to bottom right, #b73234, #b73234, #0b0024, #b73234, #b73234);
    background: -moz-linear-gradient(to bottom right, #b73234, #b73234, #0b0024, #b73234, #b73234);
    background: linear-gradient(to bottom right, #b73234, #b73234, #0b0024, #b73234, #b73234);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10px;
}

.cd {
    background: #fff;
    padding: 3em;
    border-radius: 10px;
    /* box-shadow: 3px 3px 10px #ddd; */
    border: 1px solid #ccc;
    margin: 6em 7em 3em 7em;
}

.login-card-footer-text {
    font-weight: 300;
}

.btn-login {
    padding: 13px 20px 12px;
    background: #3c3098;
    background-image: -webkit-linear-gradient(to left bottom, #3c3098, #282054);
    background-image: -o-linear-gradient(to left bottom, #3c3098, #282054);
    background-image: -moz-linear-gradient(to left bottom, #3c3098, #282054);
    background-image: linear-gradient(to left bottom, #3c3098, #282054);
    background-size: 210% 210%;
    background-position: top right;
    background-color: #3c3098;
    transition: all 0.15s ease;
    box-shadow: none;
    color: #ffffff;
    border-radius: 4px;
    font-size: 17px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 24px;
}

.form-label-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-label-group>input,
.form-label-group>select,
.form-label-group>label {
    padding: var(--input-padding-y) var(--input-padding-x);
    height: auto;
    border: 1px solid #03207c;
    padding: 15px 25px;
    max-height: 47px;
    font-size: 13px;
    line-height: 15;
    font-weight: normal;
}

.form-label-group>label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0;
    /* Override default `<label>` margin */
    line-height: 1.5;
    color: #495057;
    cursor: text;
    /* Match the input under the label */
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: all .1s ease-in-out;
}

.input-group input:not(:placeholder-shown) {
    padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
    padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group:not(:placeholder-shown)~label {
    padding-top: calc(var(--input-padding-y) / 3);
    padding-bottom: calc(var(--input-padding-y) / 3);
    font-size: 12px;
    color: #333;
}

@media(max-width: 500px) {
    /* .bg-image {
        width: 100%;
        height: 10vh;
    } */
    .login {
        padding: 2em 1em;
    }
    .login .cd {
        padding: 2em;
        /* box-shadow: 3px 3px 6px #ddd; */
        border-radius: 10px;
        border: 1px solid #ccc;
        margin: 0;
    }
}


/* Fallback for Edge
  -------------------------------------------------- */

@supports (-ms-ime-align: auto) {
    .form-label-group>label {
        display: none;
    }
    .form-label-group input::-ms-input-placeholder {
        color: #777;
    }
}


/* Fallback for IE
  -------------------------------------------------- */

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .form-label-group>label {
        display: none;
    }
    .form-label-group input:-ms-input-placeholder {
        color: #777;
    }
}


/* Fallback for IE
  -------------------------------------------------- */