@charset "utf-8";

.ol-login form {
    margin: 0;
}

.ol-login {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 12px;
    background: var(--bs-body-bg);
}

/* 타이틀 */
.ol-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
	background: var(--side-title-bg); 
	color: #fff; 
	padding: 15px; 
	font-weight: bold;
	border: none !important;
}

.ol-input-group {
    display: flex !important;
    align-items: center;
    height: 33px;
    margin:10px 12px;
    border: 1px solid var(--bs-border-color);
    border-radius: 5px;
    overflow: hidden;
    background: var(--bs-body-bg);
}

.ol-input-group input {
    flex: 1;
    height: 100%;
    padding: 0 12px;
    border: 0 !important;
    outline: none;
    background: inherit;
    box-shadow: none;
    border-radius: 0;
    line-height: normal;
    font-size: 14px;
}

/* 아이콘 */
.ol-icon {
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 0 12px;
    height: 100%;
    background: var(--bs-tertiary-bg);
    border-right: 1px solid var(--bs-border-color);
    font-size: 1.1rem;
}

/* 로그인 버튼 */
.ol-btn {
    width: calc(100% - 20px);
    margin: 0 10px 10px;
    height: 46px;
    border: 0;
    border-radius: 8px;
    background: var(--bs-primary);
    color: #fff;
    font-weight: 600;
}

/* 회원가입 버튼 */
.ol-btn-join {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #dee2e6 !important;
    font-weight: 600 !important;
}

.ol-btn-join:hover {
    background: #f8f9fa !important;
    color: #000 !important;
}

/* 하단 */
.ol-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
	margin: 0 10px;
	padding: 0 0 5px;
    font-size: 13px;
}

/* 다크모드 */
@media (prefers-color-scheme: dark) {
    .ol-login {
        background: #1e1e1e;
        color: #eee;
    }

    .ol-input-group {
        background: #1e1e1e;
        border-color: #333;
    }

    .ol-icon {
        background: #2a2a2a;
        border-color: #333;
        color: #ccc;
    }

    .ol-input-group input {
        color: #eee;
    }
}
