﻿@font-face {
    font-family: 'circular20';
    src: url(../../../fonts/Circular20-Book.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'circular20';
    src: url(../../../fonts/Circular20-Medium.otf) format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'circular20';
    src: url(../../../fonts/Circular20-Bold.otf) format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.signIn {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.signIn .headerContainer {
    position: absolute;
    top: calc(9vh);
    right: calc(4vw);
}

    .signIn .centerContainer {
        position: absolute;
        right: 50%;
        top: 50%;
        height: 450px;
        width: 450px;
        -webkit-transform: translate(50%, -50%);
        transform: translate(50%, -50%);
        display: flex;
        align-items: center;
        flex-direction: column;
    }

.signIn .centerContainer .logoContainer {
    margin-bottom: 30px;
    width: 225px;
}

.signIn .centerContainer .logoContainer > img {
    width: 100%;
}

.signIn .centerContainer .textbox {
    width: 100%;
    height: 26px;
    border-radius: 6px;
    font-size: 10px;
    padding-left: 6px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid var(--table-border);
}

.signIn .centerContainer .textbox:focus {
    border: 1px solid var(--bg-btn-primary);
    outline:0;
}

.signIn .centerContainer .usernameLabelContainer,
.signIn .centerContainer .passwordLabelContainer {
    width: 65px;
    font-size: 11px;
}

.signIn .centerContainer .spaceRow {
    height: 25px;
}

.signIn .errorContainer .errorContent {
    display: flex;
    margin-bottom: 25px;
    padding: 15px 20px 15px 10px;
    background-color: #F3C9C9;
    align-items: center;
    text-align: left;
    font-size: 9px;
}

.signIn .errorContainer .errorContent .errorIcon {
    margin-right: 8px;
    font-size: 25px;
    color: #EA7368;
    height: 25px;
}

.signIn .centerContainer .forgotPasswordContainer {
    height: 40px;
    text-align: right;
}


.signIn .forgotPasswordContainer > a {
    font-weight: normal;
}

.signIn .centerContainer .signInButtonContainer {
    text-align: center;
    height: 60px;
}
.signIn .linkButton {
    display: inline-block;
}

.signIn .centerContainer input[type=checkbox] {
    margin-left: 0;
}

.signinMain {
    background: var(--bg-login);
    padding: 10%;
    border-radius: 15px;
    width: 300px;
    font-family: circular20;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.signinHeader {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.sigin-input-group {
    text-align: left;
    display: flex;
    flex-direction: column;
    margin-bottom:10px;
}
.sigin-input-group label {
    margin-bottom: 5px
}
.quickLink, .signIn .linkButton {
    font-weight: bold;
    color: var(--bg-btn-primary-hover);
    text-decoration: none;
}
.quickLink:hover, .signIn .linkButton:hover {
    font-weight: bold;
    color: var(--bg-btn-primary-active);
}

.flex-column {
    display:flex;
    flex-direction: column;
}

@media only screen and (max-device-width:940px) {
    .signIn .centerContainer {
        width: 100%;
    }

    .carouselContainer .carousel-item > img {
        width: 100%;
        height: 100%;
    }
}

@media only screen and (max-device-width:1024px) and (-webkit-min-device-pixel-ratio: 2) {
    .signIn .centerContainer {
	    width: 100%;
    }

	.carouselContainer .carousel-item > img {
		width: 100%;
		height: 100%;
	}
}

@media only screen and (max-width:940px) {
    .signIn .centerContainer {
        width: 100%;
    }

	.carouselContainer .carousel-item > img {
		width: 100%;
		height: 100%;
	}
}