﻿body {
    padding: 20px;
}
.contentBox {
    height: calc(100vh - 40px);
    margin-right: 0;
    display: flex;
    width: 100%;
    overflow: hidden;
    padding: 15px;
    background: #FFFFFF;
    border-radius: 15px;
}

.loginBox {
    display: flex;
    flex-direction: column;
    padding: 8.5rem;
    background: #FFFFFF;
    width: 50%;
    gap: 10px;
    justify-content: center;
}

.loginBox_right {
    flex: 1;
    background: radial-gradient(at center, #f9c327, #fcc012);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.position-relative {
    position: relative;
}
.position-absolute {
    position: absolute;
}


.register {
    padding: 0.1rem 0.3rem;
    border-bottom: 1px dotted var(--btn-primary-border);
    text-decoration: none;
    color: var(--primary);
}

.register:hover {
        color: #333333;
    }

.main {
    flex: 1;
    transition: all 0.3s ease;
}


.pos-label {
    left: 20px;
    top: -11px;
    display: block;
    padding: 0.1rem 0.3rem;
    background-image: linear-gradient(to bottom, #FFFFFF 50%,rgb(247 247 247) 50%);
    border-radius: 5px;
    font-size: 0.8rem;
}

.loginBox .form-control,
.loginBox select.form-control {
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.03);
}

.loginBox .btn {
    border-radius: 25px;
    padding-block: 0.5rem;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #999
}

.form-control::-webkit-input-placeholder {
    color: #999
}
.fs-small{
    font-size:12px;
}

@media(max-width: 768px) {
    .contentBox{
        flex-direction:column;
    }
    .loginBox{
        padding:0;
        width:100%;
        overflow:auto;
    }
    .loginBox_right{
        display:none;
    }
}