@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

body {
    font-family: 'Noto Sans KR', "Malgun Gothic", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 380px;
    padding: 20px;
    text-align: center;
}
.top-left-logo {
    position: fixed; /* 화면 좌측 상단에 고정 */
    top: 20px;
    left: 20px;
    height: 40px;
    width: auto;
}


.login-container h1 {
    font-size: 2em;
    color: #1a4a8a;
    margin-bottom: 10px;
    font-weight: 700;
}

.login-container .description {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.login-info {
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    margin-top: 20px;
    line-height: 1.5;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: none; /* Labels are hidden, placeholders are used */
}

.input-group input {
    width: 100%;
    padding: 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #4a90e2;
}

.form-actions {
    margin-top: 20px;
}

.btn {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    box-sizing: border-box;
    margin-bottom: 10px;
    transition: background-color 0.2s;
}

.btn-login {
    background-color: #4a90e2;
    color: #fff;
    border-color: #4a90e2;
}

.btn-login:hover {
    background-color: #357abd;
}

.btn-report {
    background-color: #f8f9fa;
    color: #495057;
    border-color: #dee2e6;
}

.btn-report:hover {
    background-color: #e9ecef;
}
