
/* ALTEO Login Page Styles - 메인페이지 분위기와 통일 */
.login__section {
    position: relative;
    min-height: 90vh;
	height:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: 없음! */
	background:url('/theme/basic/alteo_img/banner/test2.png');
	background-size:cover;
}

.login__section .form-inner {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    background: rgba(20, 20, 30, 0.85); /* 어두운 반투명 */
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.08);
}

.login__section .contact__title h5 {
    font-family: 'Oswald', 'Noto Sans KR', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff; /* 연한 금색 */
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 2px;
}

.login__section .form-group {
    margin-bottom: 18px;
}

.login__section .form-group input {
    width: 100%;
    height: 48px;
    border: 1px solid #3a3a4a;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 15px;
    background: rgba(255,255,255,0.07);
    color: #fff;
    transition: border 0.2s;
}

.login__section .form-group input:focus {
    border-color: #fff;
    outline: none;
}

.login__section .check-box {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.login__section .check-box input[type="checkbox"] {
    accent-color: #fff;
    margin-right: 8px;
}

.login__section .check-box label {
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

.login__section .theme-btn-one {
    width: 100%;
    height: 48px;
    border:1px solid #fff;
	background:#none;
    color: #222;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
}

.login__section .theme-btn-one:hover {
    background: #fff;
    color: #333;
}

.login__section .form-footer {
    text-align: center;
    margin-top: 22px;
}

.login__section .form-footer a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.2s;
}

.login__section .form-footer a:hover {
    color: #fff;
}

.login__section .form-footer span {
    color: #444;
    margin: 0 6px;
}

.login__section .logo-box{
	width:fit-content;
	margin:0 auto 50px;
}
@media (max-width: 600px) {
    .login__section .form-inner {
        padding: 24px 8px;
    }
    .login__section .contact__title h5 {
        font-size: 22px;
    }
}