@charset "utf-8";

@font-face{
    font-family: 'Pretendard';
    font-style: normal;
    /*src: url('/assets/fonts/PretendardVariable.woff2') format('woff2');*/
}

* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
    font-family: 'Pretendard', sans-serif;
}

html, body{
    margin: 0;
    height: 100%;
    overflow: hidden;
}

input, button{
    width: 100%;
    height: 45px;
    padding: 0;
    margin: 0;
    font-size: 14px;
}
input::placeholder {
    color: #BBB;
}

.login_wrap{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    /*background-image: url("/assets/img/login/background.svg");*/
    background-repeat: no-repeat;
  	background-size: cover;
    background-position: center 50%;
}

.login_main{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.login_div_wrap {
    width: 460px;
    padding: 60px 40px;
    background-color:white;
    border: 1px solid #C9C9C9;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login_div_wrap .logo {
    color: #12315F;
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.input_login{
    border-radius: 4px;
    border: 1px solid #C9C9C9;
    margin-bottom: 10px;
    padding: 0 15px;
}
input:focus{
    outline: none;
}

.label_login {
    width: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: left;
    cursor: pointer;
}
.label_login input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    outline: 0;
}
.label_login input::after {
    position: relative;
    display: block;
    border: 1px solid #c9c9c9;
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 2px;
    box-sizing: border-box;
}
.label_login input:checked {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: auto;
}
.label_login input:checked::after {
    display: none;
}
.label_login span {
    color: #777;
    font-size: 13px;
    font-weight: 400;
}

.btn_login{
    border-radius: 4px;
    background-color: #4194F9;
    color: #FFF;
    font-weight:600;
    margin-top: 20px;
    cursor: pointer;
}

.tag_login {
    color: #777;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    margin-top: 30px;
}

.swap_login{
	width: 100%;
    height: 50px;
    border-radius: 5px;
    border: 0.2px solid #1F3E85;
    background-color: #1F3E85;
    color: #FFFFFF;
    font-weight:600;
    margin: 30px 0 0 0;
    /*background-image: url("/assets/img/login/swap_arrow.svg");*/
    background-repeat: no-repeat;  
    background-position: 136px 18px;
    cursor: pointer;
    vertical-align: middle;
}

/* alert */
.custom_alert {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2222224D;
    z-index: 10;
}
.alert_wrap {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 130px;
    padding: 15px;
    background: #fff;
    border-radius: 4px;
}
.alert_content {
    height: calc(100% - 40px);
    font-size: 13px;
    word-break: break-all;
    overflow-y: auto;
}
.custom_alert .btn_wrap {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 5px;
}
.custom_alert .modal_system_btn {
    width: 45px;
    height: 28px;
    border: 1px solid #4194F9;
    border-radius: 4px;
    background: #4194F9;
    color: #fff;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}
