/************************************************
//	FileName	:	index.css
//	Create Date	:	2022.07.19
//	Create By	:	사공수기
//	Modify Date	:
//	Modify Ver  :
//	Contentes   :	
//		로그인 페이지 CSS
//
//	Copyright (c)
//************************************************/

body {
    display: flex;
    flex-direction: column;
    margin: 0; 
    padding: 0;
}

#login_form_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

#login_form_wrap form {
    min-width: 300px;
    padding: 50px 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);
} 

#login_form_wrap form input[type=text], input[type=password] {
    margin: 10px 0;
    padding: 10px;
    width: calc(100% - 20px);
    border: 0;
    border-radius: 5px;
    font-weight: 500;
}

#login_form_wrap form input[type=text]:focus, input[type=password]:focus {
    outline: none !important;
    box-shadow: 0 0 10px #3c9efa;
}

#login_form_wrap form select:focus {
    outline: none !important;
    box-shadow: 0 0 10px #3c9efa;
}

#login_form_wrap form select {
    border: 0;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    width: calc(100% - 10px);
    font-weight: 500;
}

#login_form_wrap form .checkbox {
    margin: 10px 0;
    font-size: 12px;
    font-weight: 500;
    color: #777; 
    text-align: left;
}

.logo {
    float: left;
    padding: 0 0 10px 5px;
    width: 130px;
    height: 35px;
}

#btn_login {
    margin-top: 20px;
    padding: 10px;
    width: 100%;
    font-weight: bold;
    font-size: large;
    color: white;
    border: 0;
    border-radius: 5px;
    background-color: #1582e1;
    cursor: pointer;
}

#btn_login:hover {
    transition-duration: 0.5s;
    background-color: #115a9b;
}

/*--------------
배경 이미지
--------------*/
.img_background { 
    background-repeat: no-repeat;
    background-size: cover;
}

/*--------------
투명 배경
--------------*/
.tran_background { 
    background-color: rgba(255, 255, 255, 0.7);
}

/*---------------
중간정렬
---------------*/
.align-middle {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*--------
푸터
--------*/
.footer {
    display: inline-block;
    text-align: center;
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    color: rgb(94, 94, 94); 
}

.footer p {
    padding: 10px 0;
    display: inline-block;
    margin: 0;
    width:100%;
}