#another-filter {
    display: none;
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* Login */
.wrapper-row {
    height: 100vh;
    background-color: rgb(241, 241, 241);
}

.wrapper-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper-form {
    width: 32rem;

    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .075);
    -moz-box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .075);
    box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .075);
}

.form {
    height: 100%;
    padding: 2.5rem;
}

.form-group {
    position: relative;
    margin-top: 1.5rem;
}

.form-input {
    width: 100%;
    height: 2.5rem;
    padding: .5rem;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: .1rem solid rgb(169, 169, 169);
    font-size: 1.2rem;
    text-align: center;
}

.form-label {
    width: 100%;
    position: absolute;
    top: 0rem;
    left: 0;
    text-align: center;
    font-size: 1.2rem;
    pointer-events: none;
    transition: .2s linear all;
}

.form-input:focus,
.form-input:valid
{
    border-bottom: .1rem solid rgb(0, 162, 240);
}

.form-input:focus ~ .form-label,
.form-input:valid ~ .form-label
{
    top: -1.3rem;
    left: 0;
    font-size: 1.1rem;
    color: rgb(0, 162, 240);
}

.form-button {
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 50%;
    border: .1rem solid rgb(0, 162, 240);
    background-color: rgb(0, 162, 240);
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    -webkit-box-shadow: 0 .2rem .2rem 0 rgba(0, 0, 0, .12);
    -moz-box-shadow: 0 .2rem .2rem 0 rgba(0, 0, 0, .12);
    box-shadow: 0 .2rem .2rem 0 rgba(0, 0, 0, .12);
    cursor: pointer;
    transition: .2s linear all;
    position: absolute;
    top: .5rem;
    right: 0;
}

.form-button:focus {
    outline: none;
}

.form-button:hover {
    background-color: rgb(9, 175, 255);
    border-color: rgb(9, 175, 255);
}

.form-button-icon {
    line-height: 3.1rem;
}

.form-checkbox-label {
    display: block;
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1.2rem;
    cursor: pointer;
    font-size: 2.2rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: .2rem;
}

.form-checkbox-label .form-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-fake-checkbox {
    position: absolute;
    top: .9rem;
    left: 0;
    height: 2rem;
    width: 2rem;
    background-color: #eee;
    -webkit-border-radius: .2rem;
    -moz-border-radius: .2rem;
    border-radius: .2rem;
}

.form-checkbox-label:hover .form-checkbox ~ .form-fake-checkbox {
    background-color: rgb(234, 234, 234);
}

.form-checkbox-label .form-checkbox:checked ~ .form-fake-checkbox {
    background-color: rgb(0, 162, 240);
}

.form-checkbox-label .form-checkbox:checked ~ .form-fake-checkbox:after {
    display: block;
}

.form-checkbox-label .form-fake-checkbox:after {
    left: .7rem;
    top: .3rem;
    width: .7rem;
    height: 1.2rem;
    border: solid rgb(255, 255, 255);
    border-width: 0 .3rem .3rem 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.form-fake-checkbox:after {
    content: "";
    position: absolute;
    display: none;
}

.form-remember-text {
    font-size: 1.2rem;
}

.form-icon {
    font-size: 1.2rem;
}

.margin-top--25 {
    margin-top: 2.5rem;
}

.margin-bottom--25 {
    margin-bottom: 2.5rem;
}

.display-flex {
    display: flex;
    justify-content: space-between;
}

.form-errors {
    width: 100%;
    text-align: center;
}

.form-error {
    color: rgb(255, 86, 82);
    font-size: 1.2rem;
    text-align: center;
}

/* main page */

.main {
    width: 100%;
    height: 100vh;
    background-color: rgb(244, 244, 244);
}

.main .row {
    height: 100vh;
}

.main .col-md-12 {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main .main-text {
    width: 40rem;
}

.main-text p {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.4rem;
}

.main-text p > i {
    color: rgb(249, 107, 102);
}

.main-text div {
    margin-top: 25px;
    margin-left: 150px;
}

.main-text a {
    text-align: center;
    border: .1rem solid rgb(249, 107, 102);
    padding: 10px;
    color: rgb(249, 107, 102);
    font-size: 1.2rem;
    text-decoration: none;
    transition: .2s linear all;
}

.main-text a:hover {
    background-color: rgb(249, 107, 102);
    color: rgb(255, 255, 255);
}


