﻿/* CSS Document */
@font-face {
    font-family: 'Rochester';
    src: url('../../fonts/Rochester/Rochester-Regular.ttf');
}
html {
    height:100%;
}


/*Start Intro*/
.intro {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    top: 0px;
    left: 0px;
    cursor: pointer;
    background-image: url('../images/bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
    .intro .container-intro {
        position: absolute;
        left: 50%;
        top: 5%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
    }


    .container-intro .intro-title {
        position: relative;
        /*z-index: -1;*/
    }

        .container-intro .intro-title h1 {
            width:100%;
            white-space: nowrap;
            font-size: 7rem;
            margin: 0px;
            font-weight: 900;
            position: absolute;
            left: 50%;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
            background: url('../images/11.jpg') no-repeat;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: cover;
            background-position: center;
            font-family: 'Rochester', cursive;
        }


    .intro .intro-img img {
        position: absolute;
        height: 85vh;
        bottom: 0%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
/*End Intro Page*/
/*Start Login Page*/
.container-fluid {
    z-index: 9999;
}
.center {
    position: absolute;
    top: 30%;
    left: 54%;
    -webkit-transform: translate(-50%,-30%);
    -ms-transform: translate(-50%,-30%);
    transform: translate(-50%,-30%);
}
.container_login {
	display: flex;
	justify-content: space-between;
	width: 600px;
	height: fit-content;
	margin: 0 auto;
}
.flip {
    -webkit-transform: rotateY(-160deg);
    transform: rotateY(-160deg);
}
.logo-img {
	background-image: url(../images/Logo.png);
	width: 198px;
	height: 185px;
	background-size: 100% 100%;
	position: absolute;
	left: 0.2rem;
	top: 3.2rem; 
}
.content_login {
	width:490px;
	/*float: right;
    margin-left: -175px;*/
	border-radius: 10px;
	box-shadow: 1px 1px 7px #FFF;
	background-color: #FFF;
	text-align: right;
	background: rgb(255, 255, 255);
	background: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 1) 39%, rgba(243, 243, 243, 1) 97%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(39%,rgba(255,255,255,1)), color-stop(97%,rgba(243,243,243,1)));
	background: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 1) 39%, rgba(243, 243, 243, 1) 97%);
	background: -o-linear-gradient(-45deg, rgba(255, 255, 255, 1) 39%, rgba(243, 243, 243, 1) 97%);
	background: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 1) 39%, rgba(243, 243, 243, 1) 97%);
	background: linear-gradient(135deg, rgba(255, 255, 255, 1) 39%, rgba(243, 243, 243, 1) 97%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f3f3f3',GradientType=1 );
	padding-bottom: 17px;
}
.large-header {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    top: 0px;
    left: 0px;
    cursor: pointer;
    background-image: url('../images/bg.jpg') ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.login-title {
    background: linear-gradient(56deg, rgb(61 120 182) 0%, rgb(27 61 105) 50%, rgb(61 120 182) 100%);
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    background-size: 100% 100%;
    display: flex;
    justify-content: space-between;
}
    .login-title h1,
    .login-title span {
        font-size: 1.5rem;
        padding: .5rem .5rem .5rem 1rem;
        margin: 0px;
        text-align: left;
        color: #fff;
        text-transform: capitalize;
    }

.login_input,
select {
	width: 55%;
	height: 29px;
	border-radius: 7px;
	border: 1px solid #CCC;
	margin-top: 10px;
	outline: none;
	font-size: 1rem;
} 
.select-info{
    margin-top: 2.25rem;
}
.form-body {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
label {
    font-size: 13px;
    margin-top: 0px;
    margin-right: 95px;
}
.check-container {
    display:flex;
    align-self: center;
    margin-top:.5rem;
    padding-left: 9rem;
}
.div-content {
	display: flex;
	justify-content: space-between;
	width: 56%;
}
.btn-container {
    margin-top:1rem;
}

.btn-main,
.btn-back {
    margin-top: 8px;
    border: none;
    background-color: #337ab7;
    color: #FFF;
    padding: 0.5rem 1rem;
    font-size: 13px;
    box-shadow: 1px 1px 5px #999;
    transition: 0.5s;
    outline: none;
    border-radius: 5px;
}
.btn-main {
    background-color: #337ab7;
}
.btn-back {
    background-color: #8b0006;
}

.btn-main:hover {
    background-color: #143F6B;
}

.btn-back:hover {
    background-color: #660000;
}
/*End Login Page*/
/*Start Media*/
@media only screen and (max-width: 767px) {
    .container-intro .intro-title {
        height: 142px;
    }

        .container-intro .intro-title h1 {
            font-size: 80px;
            top: 35%;
        }
}

@media (min-width:500px) and (max-width:700px) {
    .center {
        left: 60%;
    }
}

@media (min-width:299px) and (max-width:570px) {
    .container_login {
        width: 310px;
    }
    .center {
        left: 50%;
    }
    .login-title h1, .login-title span {
        font-size: 1.5rem;
        padding: 0.5rem;
    }
        .logo-img {
        display: none;
    }

    .content_login {
        width: 100%;
    }
    .login_input, select {
        width: 95%;
    }

    .check-container {
        align-self: flex-start;
        padding-left: 1rem;
    }
    .div-content {
        width: 95%;
    }
}

@media (min-width:200px) and (max-width:300px) {
    .container_login {
        width: 215px;
    }
    .center {
        left: 50%;
    }

    .login-title h1, .login-title span {
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .logo-img {
        display: none;
    }

    .content_login {
        width: 100%;
        text-align: left;
    }

    .login_input, select {
        width: 95%;
    }

    .check-container {
        align-self: flex-start;
        padding-left: 1rem;
    }

    .div-content {
        width: 95%;
    }
    label {
         margin-right: 0px;
    }
/*End Media*/