@import "fonts.css";

* {
    margin: 0;
    padding: 0
}

body {
    font-family: Roboto-Light;
}

h1, h2 {
    font-family: Roboto-Medium;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-size: 40px;
}
h2 {
    font-size: 30px;
}

.frm__group {
    margin-bottom: 1rem;
}
label {
    display: inline-block;
    margin-bottom: 0.5rem;
}
.frm__control {
    display: block;
    padding: 10px;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 16px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin: 0;
    outline: none;
}
.frm__group.error .frm__control {
    border: 1px solid red;
}
.frm__group span {
    display: none;
    font-size: 14px;
}
.frm__group.error span {
    display: block;
    color: red;
}
.frm__message {
    display: none;
    padding: 6px 10px;
    text-align: center;
    color: #fff;
    background-color: red;
    margin-bottom: -6px;
    margin-top: 20px;
    font-size: 14px;
}
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 16px 0;
    font-size: 16px;
    border-radius: 26px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: 200px;
    cursor: pointer;
}
.btn__primary {
    color: #fff;
    background-color: #4376e3;
    border-color: #4376e3;
}
.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.btn.disabled, .btn:disabled {
    opacity: .65;
}

.bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1e1e1e;
    opacity: 0.9;
    z-index: 2;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47,0,.74,.71);
}

.login__recovery {
    text-align: center;
    margin-top: 20px;
}
.login__msg {
    display: none;
    font-size: 24px;
    text-align: center;
}

@media screen and (min-width: 768px) {

    .frm__message {
        font-size: 16px;
    }
    
}