
@font-face {
    font-family: RobotoSlab;
    src: url("./../fonts/RobotoSlab.ttf");
}
* {
    font-size: 16px;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: RobotoSlab;
}

body {
    width: 100vw;
    height: 100vh;
    /* background-color: #F4F6F6; */
    background-color: #fff;
    display: flex;
}

.info-box {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.header-title {
    margin-top: 35%;
}

.login-box {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #ECF0F1;
}


.header-title {
    user-select: none;
    font-size: 1.2rem;
}

.sub-title {
    user-select: none;
    margin-top: 1rem;
    font-size: 2rem;
}

.info-box {
    position: relative;
}

.watermark {
    position: absolute;
    bottom: 15%;
    left: 50%;
}

.info {
    position: absolute;
    top: 25%;
    left: 40%;
}

.watermark img {
    width: 25rem;
    z-index: -10!important;
}


.input {
    width: 15rem;
    border:none;
    outline: none;
    padding: 0.5rem 0;
    background-color: #FDFEFE;
    margin: 0.5rem 0;
    padding-left: 1rem;
    border-radius: 0.25rem;
}


.form-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.header-title {
    opacity: 0.5;
}

.sign-in-btn {
    margin-top: 1rem;
    width: 100%;
    padding: 0.5rem;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: #3498DB;
    border-radius: 0.25rem;
    color: #fff;
}


.error-text {
    font-size: 0.7rem;
    color: red;
}

.logo img {
    width: 2.5rem;
    position: absolute;
    top: 4%;
    left: 3%;
}
