﻿@font-face {
    font-family: 'Conthrax';
    src: url('../fonts/Conthrax-SemiBold.otf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CenturyGothic';
    src: url('../fonts/centurygothic.ttf');
    font-weight: normal;
    font-style: normal;
}

body {
    user-select: none;
    color: #605f5f;
    font-family: "CenturyGothic";
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-color: #8a0000;
}

#center {
    padding: 40px;
    margin-top: 20px;
    width: 350px;
    /*height: 500px;*/
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 1px rgb(74 0 0 / 75%);
    -webkit-box-shadow: 0px 0px 20px 1px rgb(74 0 0 / 75%);
    -moz-box-shadow: 0px 0px 20px 1px rgb(74 0 0 / 75%);
}

#loginTitulo {
    text-align: center;
    width: 100%;
    font-family: "Conthrax";
}

.btn {
    font-family: "Conthrax";
    background-color: #605f5f;
    border-color: #605f5f;
    color: #fff;
}

    .btn:hover, .btn:focus {
        box-shadow: none;
        background-color: #434343;
        border-color: #434343;
        color: #fff;
    }

label {
    cursor: pointer;
}

.form-control {
    border: none;
    background-color: #fff;
    border-bottom: 1px dashed #605f5f;
    border-radius: 0px;
    height: 0px;
    padding: 0 5px 0 5px;
    /*transition: height 0.3s ease-in-out;*/
}

    .form-control:focus {
        /*height: 40px;*/
        box-shadow: 0px 8px 13px -12px rgba(138,0,0,0.75);
        -webkit-box-shadow: 0px 8px 13px -12px rgba(138,0,0,0.75);
        -moz-box-shadow: 0px 8px 13px -12px rgba(138,0,0,0.75);
        border-color: #8a0000;
    }

.form-group:focus-within label:not(#manterConectadoLabel) {
    color: #8a0000;
    font-weight: 700;
}

.form-check-input:hover {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #8a0000;
    border-color: #8a0000;
}

.form-check-input:focus {
    border-color: #8a0000;
    box-shadow: none;
}

#erros ul {
    color: #8a0000;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

    #erros li {

    }
