﻿.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: 500px;
    height: 450px;
    width: 450px;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.signIn .centerContainer .logoContainer {
    margin-bottom: 50px;
    width: 225px;
    margin-left: 25px;
}

.signIn .centerContainer .logoContainer > img {
    width: 100%;
}

.signIn .centerContainer .textbox {
    width: 200px;
    height: 26px;
    border-radius: 2px;
    font-size: 10px;
    padding-left: 6px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid rgb(169, 169, 169);
}

.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;
}

.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;
    font-style: italic;
    font-size: 10px;
}

.signIn .centerContainer .signInButtonContainer {
    text-align: center;
    height: 60px;
}
.signIn .linkButton {
    display: inline-block;
}

.signIn .centerContainer input[type=checkbox] {
    margin-left: 0;
}

@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%;
	}
}