@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,500);

html, body {
}

.top-space {
    margin-top: calc(30vh - 230px);
}

/* Basic Colors*/
.red-color {
    color: #E3000F;
}

.red-color-background {
    background-color: #E3000F;
}

.login-page {
    padding: 16px;
    margin: auto;
}

.img-width {
    width: 70%;
    max-width: 500px;
}

body {
    background: white;
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.white-color {
    color: red;
}

.login-btn {
    font-size: 1em;
    font-weight: bold;
}

.input-group {
}

.input-group > .form-control {
    background-color: #EAEAEA;
    text-transform: none;
    border-radius: 10px !important;
}

.form-group {
    padding: 0 8%;
    margin-bottom: 1rem;
}

.form-div {
    margin: auto;
    max-width: 600px;
}

.button-login {
    border-radius: 50px;
    color: white;
    width: 50%;
}

.font-h1 {
    font-family: Montserrat;
    font-size: 1.6em;
    font-weight: 500;
}

.font-h2 {
    font-family: Montserrat;
    font-size: 1.2em;
    font-weight: 400;
}

.font-label {
    font-family: Montserrat;
    font-weight: 400;
}

.link {
    font-size: 1em;
    color: #A8A7A7;
}

.password-toggle-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 999;
}

.password-toggle-icon i {
    transition: color 0.3s ease-in-out;
    scale: 1;
    opacity: .7;
}

.password-toggle-icon i:hover {
    opacity: 1;
}

.form-check-input{
    border-color: #a7a6a6;
}

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

.error{
    color: #E3000F;
    font-family: Montserrat;
    font-size: 1em;
    font-weight: 400;
}

.overflow-password {
    padding-right: 10px;
}

.form-group-with-less-padding {
    padding: 0 4% 0 8%;
}

.checkbox-with-less-margin {
    margin-right: 0.5rem !important;
}