/* body 전체 스타일 */
body {
    background-color: #000630;
    margin: 0;
    padding: 0;
}

/* 전체 컨테이너 */
.main_container {
    display: flex;
    flex-direction: column; /* 세로로 정렬 */
    justify-content: space-between; /* main과 footer 간격 유지 */
}

/* Main 영역 */
#main {
    flex: 1; /* main이 남은 공간을 모두 차지 */
    display: flex;
    justify-content: center; /* 가로 가운데 정렬 */
    align-items: center; /* 세로 가운데 정렬 */
}

/* Login container */
.login_container {
    width: auto;
    padding: 15px;
    border-radius: 20px;
    border: 3px solid black;
    background-color: white;
    font-family: 'Cabin', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* 그림자 효과 */
}

/* form container */
.form_container{
    width: 300px;
	height: 100%;
    margin: auto;
}

.cancel_button {
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.form_title_div{
    margin: auto; 
    text-align: center;
}

.form_title_p{
    font-weight: bold; 
    font-size: 20px; 
    display: inline-block; 
    padding-top: 8px;
}

.form_input{
    width: 80%; 
    height: 30px; 
	border:none;
    border-color: gray;
}

.form_item_name{
    color: gray;
	font-size:13px;
}

.form_text_alert{
    height: 10px;
}

.form_text_alert_padding{
    padding-bottom: 10px;
}

.form_submit_button{
    width: 100%; 
    /* height: 6vh;  */
    background-color: white; 
    border: 1px; 
    border-radius: 3px; 
    color: white; 
    font-size: 17px; 
    font-weight: 500;
    cursor: pointer;
}

.form_submit_button:hover {
    background-color: whitesmoke;
}

input:focus {
	outline:none;
}

input:focus::-webkit-input-placeholder, 
textarea:focus::-webkit-input-placeholder { 
	color:transparent; 
}


/* Footer 영역 */
#footer {
    height: 10vh;
    background-color: #000630;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Footer 이미지 */
.footer img {
    width: 20vh;
}

.empty_place {
	padding: 10px;
}

