@import url('/adrc/admin/assets/css/font.css');
@import url('/adrc/admin/login/css/admin.css');

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;        
}
body {
    background: linear-gradient(285deg, #374C70 5.38%, #1F71EB 48.67%, #1FC0EB 95.72%);
    position: relative;
    font-family: 'NotoSansKR', sans-serif;
}
body::before {
    content: '';
    width: 156px;
    height: 27px;
    background-image: url('/common/images/new_logo_white.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    bottom: 26px;
    left: 29px;
}
body::after {
    content: none;
    width: 811px;
    height: calc(100% - 123px);
    background-image: url(/adrc/admin/login/img/logo-bg-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 112px 63px;
    position: absolute;
    bottom: 0;
    right: 0;
}

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
li, ul, ol {
    list-style: none;
}
a, a:link {
    color: #333;
    text-decoration: none;
}
.form-check input[type=checkbox]:checked + .form-check-sign:after {
    position: absolute;
    top: 2px;
    left: 3px;
    content: '';
    width: 14px;
    height: 13px;
    background-image: url('/adrc/admin/login/img/admin-check.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}