@import url(./fonts.css);

body {
    margin: 0;
}

.body-container {
    font-family: T2RooftopRegular, serif;
    display: flex;
    height: 70vh;
}

.login-page {
    width: 35%;
    margin: auto;
    max-width: 350px;
}

@media screen and (max-width: 576px) {
    .login-page {
        width: 90%;
        margin: auto;
    }
}

.lead {
    font-family: HalvarBreit, sans-serif;
    text-align: center;
}

.form-group {
    font-size: 14px;
    padding: 6px;
    display: flex;
    flex-direction: column;
}

.form-check-input {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #000000d9;
    font-size: 14px;
    line-height: 1.5715;
    list-style: none;
    position: relative;
    top: 0.2em;
    white-space: nowrap;
    outline: none;
    cursor: pointer;
}

.btn-wrapper {
    display: flex;
    justify-content: space-around;
    padding: 6px;
}

.btn {
    width: 100%;
    height: 40px;
    padding: 6.4px 20px;
    font-size: 14px;
    border-radius: 40px;
    line-height: 1.5715;
    position: relative;
    display: inline-block;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    background-image: none;
    border: 1px solid transparent;
    box-shadow: 0 2px #00000004;
    cursor: pointer;
    transition: all .3s cubic-bezier(.645,.045,.355,1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
    color: #000000d9;
}

.btn-primary {
    color: #fff;
    border-color: #1890ff;
    background: #1890ff;
    text-shadow: 0 -1px 0 rgb(0 0 0 / 12%);
    box-shadow: 0 2px #0000000b;
}

.form-control {
    box-sizing: border-box;
    margin: 0;
    font-variant: tabular-nums;
    list-style: none;
    position: relative;
    display: inline-block;
    width: 100%;
    min-width: 0;
    padding: 4px 11px;
    color: #000000d9;
    font-size: 14px;
    line-height: 1.5715;
    background-color: #fff;
    background-image: none;
    border: 1px solid #d9d9d9;
    border-radius: 40px;
    transition: all .3s;
}

.form-control:focus {
    border-color: #1890ff;
    box-shadow: 0 0 0 2px #1890ff33;
    border-right-width: 1px;
    outline: 0;
}

#real-login-input {
    display: none;
}

.input-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.input-eye-img {
    position: absolute;
    opacity: 0.5;
    width: 24px;
    height: 24px;
    right: 12px;
}

.input-eye-img:hover {
    opacity: 1;
}