body {
    font-family: 'Pretendard';
}

/* 전체 레이아웃 */
.login-frame {
    width: 100vw;
    height: 100vh;
    min-width: 1280px;
    min-height 720px;
    box-shadow: 0px 10px 16px -2px rgba(0, 0, 0, 0.12), 0px 8px 16px -2px rgba(0, 0, 0, 0.09);
    background-color: #fff;
    display: flex;
    justify-content: center;
}

/* 왼쪽 이미지 섹션 */
.image-section {
    flex: 3;
    width: 1240px;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* 이미지가 섹션을 넘어가지 않도록 설정 */
}

/* 이미지 요소 스타일 */
.image-section img {
    width: 100%;
    height: 100%;
}

.system-title {    
    font-weight: 400;
    font-size: 26px;
    line-height: 1.5em;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 37%;
    /* 반응형 위치 */
    left: 13%;
    /* 반응형 위치 */
    margin: 0;
}



/* 오른쪽 로그인 섹션 */
.login-section {
    width: 735px;
    height: 100%;
    flex: 2;
    background-color: #ffffff;
    border-radius: 0px 70px 70px 0px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* DEBSWANA 로고 이미지 위치 */
.logo-img {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 170px;
    /* 이미지 크기 조정 */
    height: auto;
}

/* 폼 컨테이너 스타일 */
.form-container {
    max-width: 400px;
    width: 100%;
    margin: auto;    
    /* 폰트 설정 */
    color: #333;
    /* 기본 텍스트 색상 */
    text-align: left;
    /* 전체 폼 컨테이너의 텍스트 왼쪽 정렬 */
}

/* Sign in 제목 스타일 */
.form-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    /* 제목 텍스트 색상 */
    margin-bottom: 24px;
    text-align: left;
    /* 제목 왼쪽 정렬 */
}

/* 설명 텍스트 스타일 */
.form-subtext {
    font-size: 18px;
    color: #666;
    /* 설명 텍스트 색상 */
    margin-bottom: 36px;
    line-height: 1.6;
    text-align: left;
    /* 설명 텍스트 왼쪽 정렬 */
}

/* Register 링크 스타일 */
.register-link {
    color: #ff5722;
    /* 주황색으로 변경 */
    font-weight: bold;
    text-decoration: none;
    text-decoration: underline;
}

/* 입력 필드 스타일 */
.input-group {
    padding-bottom: 10px;
    /*margin-bottom: 20px;*/
    display: flex;
    align-items: center;
}

.input-group-text {
    background: transparent;
    border: none;
    color: #ff5722;
    /* 아이콘 주황색 */
}

/* input-container 스타일 */
.input-container {
    display: block;
}

.form-control {
    border: none;
    border-bottom: 2px solid black;
    /* 굵은 밑줄 설정 */
    box-shadow: none;
    padding: 4px;
    /* 위아래 여백 추가 */
    color: #333;
    font-size: 16px;
    text-align: left;
    /* 입력 텍스트 왼쪽 정렬 */
}

/* 입력 필드 포커스 상태 스타일 */
.form-control:focus {
    background-color: #ffecd2;
    /* 주황색 배경 설정 */
    outline: none;
    /* 파란색 아웃라인 제거 */
    border-bottom: 2px solid black;
    /* 포커스 시 주황색 밑줄 */
    box-shadow: none;
    /* 추가된 그림자 제거 */
    color: #333;
    /* 텍스트 색상 유지 */
}

/* 레이블 스타일 */
.form-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    display: block;
    font-weight: bold;
    /* 레이블 강조 */
}

/* Remember me와 Forgot Password 스타일 */
.form-check-label {
    font-size: 14px;
    color: #666;
}

.forgot-password {
    font-size: 14px;
    color: #666666;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* 커스텀 버튼 스타일 */
.custom-btn {
    background-color: #ff5722 !important;
    /* 주황색 */
    color: #fff !important;
    border: none !important;
    font-size: 18px !important;
    font-weight: bold;
    padding: 12px;
    border-radius: 35px;
    margin-top: 10px;
    text-align: center;
    transition: background-color 0.3s, transform 0.1s;
}

/* 호버 상태 */
.custom-btn:hover {
    background-color: #e64a19 !important;
    /* 어두운 주황색 */
    color: #fff !important;
}

/* 클릭(활성) 상태 */
.custom-btn:active {
    background-color: #ff5722 !important;
    /* 클릭 시 주황색 유지 */
    color: #fff !important;
    box-shadow: none !important;
    transform: scale(0.98);
}

/* 버튼이 비활성화된 경우 (예: disabled) */
.custom-btn:disabled {
    background-color: #ffb3a1 !important;
    /* 연한 주황색 */
    color: #fff !important;
    opacity: 0.7;
}

@media (max-width: 1600px) {
    .login-frame {
      width: 100svw;
      height: 100svh;
    }

    .system-title {
        font-size: 22px;
    }
}