:root {
    --main-color: #FFB400;  /* CSS 전역 변수 선언 */
    --login-color:  #FFB400;  /* 로그인 페이지 메인 색상 */
}
/* 로그인 */
.loginTotalContainer {
    display: flex;
    width: 100%;
    min-width: 1200px;
    min-height: 800px;
    flex-direction: column;
    height: 100vh;
    background: var(--login-color);
}

.mainColorSpace {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: end;
}

.whiteSpace {
    flex: 1;
    background-color: #fff;
}

.logoImgWrapper {
    width: 25%;
    display: flex;
    max-width: 500px;
    margin-bottom: -2px;
}

.logoImgWrapper img {
    width: 100%;
}

.loginWrapper {
    position: absolute;
   
    height: 49%;
    background-color: #fff;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0px 29px 10px rgba(0, 0, 0, 0.14);
    border-radius: 50px;
    width: 570px;
}

.loginContainer {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 14%;
    width: 100%;
    height: 75%;
    padding: 0 15%;
}

.loginTitleContainer {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
}

.loginLogoWrapper {
    display: flex;
    width: 30%;
}

.loginLogoWrapper {
    width: 100%;
}

.loginTitle {
    color: var(--login-color);
    font-weight: 600;
    font-size: 30px;
}

.loginTitle span {
    color: var(--main-color);
    font-size: 40px;
    font-weight: 600;
}

.loginSubtitle {
    color: var(--login-color);
    font-size: 15px;
    font-weight: 500;
}

.loginInputContainer {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    flex: 2;
}

.inputWrapper {
    width: 100%;
    border: 1px solid #cfcfcf;
    border-radius: 35px;
    flex: 2;
    display: flex;
    align-items: center;
    padding: 0% 4% 0% 6%;
    max-height: 50px;
}

.inputWrapper:not(:first-child) {
    margin-top: 10px;
}

.inputWrapper span {    
    color: #999;
    font-size: 16px;
    min-width: 100px;
    width:100px !important;
}

.inputWrapper input {
    flex: 4;
    width: 100%;
    border: none;
    color: #999;
    font-size: 16px;
}

.checkBoxWrapper {
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 3%;
    margin-top: 15px;
}

.checkBoxWrapper i {
    color: #cfcfcf;
    margin-right: 6px;
}

.checkBoxWrapper span {
    color: #333;
    font-size: 15px;
}

.loginBtnContainer {
    flex: 1;
    margin-top: 30px;
}

#loginBtn {
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 35px;
    font-size: 17px;
}

.bellImgWrapper {
    position: absolute;
    max-width: 291px;
    width: 50%;
    z-index: 1;
    display: flex;
    height: 100%;
    margin-top: -1%;
    left: -24%;
}

.bellImgWrapper img {
    width: 100%;
    object-fit: contain;
}


input[type=text] {
    padding: unset;
}

.input-password-wrap {
    display: flex;
    align-items: center;
}

.input-password-wrap input {
    flex: 1;	
    background: transparent;
}

.input-password-wrap i {
    position: absolute;
    cursor: pointer;
    padding: 0 5px;
    color: #888;
    right: -50px;
}

input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset !important;
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}

input[type="password"]{
    padding-left:0px;
}

input[type="text"]{
    padding-right: 35px;
}

#toggle_pw {
    cursor: pointer;
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
}

