.sheep-content {
    position: relative;
    height: 100vh;
    background-color: #fff;
    overflow: hidden;
}

.sheep-content::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* 加载背景图 */
    background: url("../images/bj.png") no-repeat;
    background-size: 100% 100%;
}

/* .sheep-content::after {
    content: '';
    position: absolute;
    left: 0;
    width: 30%;
    height: 60%;
    z-index: 1;
    opacity: .5;
    background: url('../images/bj3.png') no-repeat;
    background-size: 100% 90%;
} */

/* .sheep-content .cloud {
    position: absolute;
    right: 0;
    bottom: 35px;
    width: 30%;
    height: 30%;
    z-index: 1;
    background: url('../images/bj2.png') no-repeat;
    background-size: 100% 90%;
} */
.sheep-content .sign-content {
    position: absolute;
    top: 32vh;
    right: 15%;
    width: 27%;
    z-index: 2;
}
.sheep-content .sign-content .form-content {
    padding: 2.5rem;
    border-radius: 0.5rem;
    background-color: #fff;
    box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.08);
    border-radius: 21px;
}
.form-title {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2rem;
    color: black !important;
}
.form-link {
    color: #007ee5 !important;
    font-size: 16px !important;
    letter-spacing: 1px;
}
.form-button {
    background: linear-gradient(90deg, #049bfb, #0183e9) !important;
    box-shadow: none !important;
}
.form-button:hover {
    background: linear-gradient(278deg, #1d4fd8d7, #3b83f6c0) !important;
}
.form-link:hover {
    font-weight: 700 !important;
}
.form-group,
.input-group .input-group-focus {
    border-color: #1e51d9 !important;
}
.login-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}
.login-footer div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.login-footer div span {
    margin-top: 15px;
    color: #999999;
}
/* Hide the default checkbox */
.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.check-container {
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
    width: 40%;
    height: 20px;
    overflow: hidden;
}

/* Create a custom checkbox */
.checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 1.1em;
    width: 1.1em;
    background-color: #e3e1e18a;
    border-radius: 25px;
    transition: 0.15s;
}

/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
    background-color: #04abfb;
    border-radius: 25px;
    transition: 0.15s;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
    left: 0.335em;
    top: 0.1em;
    width: 0.4em;
    height: 0.7em;
    border: solid white;
    border-width: 0 0.15em 0.15em 0;
    transform: rotate(45deg);
}

.check-text {
    position: relative;
    right: -26px;
    top: -21px;
    color: black;
    font-size: 1rem;
    margin-left: 0.1rem;
}
.footer-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 17px 0;
}
.divider {
    display: block;
    height: 1px;
    width: 100%;
    margin: 16px 0;
    border-top: 1px #dcdfe6 solid;
}
.form-group,
.input-group {
    margin-bottom: 15px;
}

.group-active{
    transform: scale(1.2);
    transition: transform .3s ease-in;
}
.group-active + span{
    color: #3880E1 !important;
}

