@charset "UTF-8";

.login__wrap {
	display:flex;
	width:100%;
	height:calc(100vh - 345px);
	min-height:500px;
	margin-top:95px;
}

.login__box {
	display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: auto;
}

.login__box h3 {
    font-size: 35px;
    font-weight: 700;
    border-bottom: 5px solid #1a5d8b;
    padding-bottom: 10px;
    margin-bottom: 35px;
}

.login__box img {
    margin-bottom: 20px;
}

.login__form {
	width:100%;
}

.login__form form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    border: 2px solid #1a5d8b;
    border-radius: 5px;
}

.login__formID,
.login__formPass {
	display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.login__form input {
    height: 35px;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: #f3f3f3;
    padding-left: 20px;
}

.login__form span {
    font-size: 20px;
    font-weight: 700;
    color: #7c7c7c;
}

.login__form button {
    margin-top: 30px;
    border: none;
    background-color: #1a5d8b;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 5px;
    cursor: pointer;
}



















