/* 기본 body와 html 스타일 */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* 헤더 스타일 */
header {
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background-color: #f5f5f5;
}

header img {
    height: 80%;
}

/* 공통 컨테이너 스타일 */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80%; /* 화면의 80% */
    padding: 0 5%;
}

/* 공통 왼쪽 컨테이너 스타일 */
.left {
    width: 50%;
}

.left h1 {
    font-size: 3rem;
}

.left p {
    font-size: 1.2rem;
    color: #555;
}

/* 공통 오른쪽 컨테이너 스타일 */
.right {
    width: 35%;
}

/* 공통 로그인 박스 스타일 */
.login-box {
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 5px;
    background-color: #fff;
}

.login-box label {
    display: block;
    margin-bottom: 5px;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.login-box button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-box a {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #333;
    text-decoration: none;
}

.login-box a:hover {
    text-decoration: underline;
}

/* Footer 스타일 */
footer {
    height: 5%;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
}

footer a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}