.fade-in {
    animation: fadeInAnimation ease 1.5s;
    -webkit-animation: fadeInAnimation ease 1.5s;
    -moz-animation: fadeInAnimation ease 1.5s;
    -o-animation: fadeInAnimation ease 1.5s;
    -ms-animation: fadeInAnimation ease 1.5s;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
}

/* .loading-spinner {
    border: 5px solid rgba(245, 245, 245, 1);
    border-top: 5px solid rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
} */

.spinner {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 30px;
    transform: scale(1.3);
}

.spinner > div {
    background-color: #108ee9;
    height: 100%;
    width: 6px;
    display: inline-block;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
    animation-delay: -1.1s;
}

.spinner .rect3 {
    animation-delay: -1s;
}

.spinner .rect4 {
    animation-delay: -0.9s;
}

.spinner .rect5 {
    animation-delay: -0.8s;
}

@keyframes sk-stretchdelay {
    0%,
    40%,
    100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}

.fade-in {
    animation: fadeInAnimation ease 1.5s;
    -webkit-animation: fadeInAnimation ease 1.5s;
    -moz-animation: fadeInAnimation ease 1.5s;
    -o-animation: fadeInAnimation ease 1.5s;
    -ms-animation: fadeInAnimation ease 1.5s;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* 这会确保元素的宽度包括其内部边距和边框 */
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.login-input {
    width: 240px;
    height: 36px;
    font-size: 14px;
    margin-bottom: 5px;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

.login-button {
    width: 70%;
}

.login-subtitle {
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.forget-link {
    width: 50%;
    text-align: right;
    left: 20px;
}
.login-form-button:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

.btn-grad:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

.body-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-image: url(../../assets/backgrounds/login_background_square.jpg); */
    background-image: url("https://images.unsplash.com/photo-1673427147403-9e87c4fe8a26?q=80&w=2728&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    position: relative;
}
.container {
    /* background-color: #ffffff; */
    border-radius: 10px;
    box-shadow: 0 calc(0.2 * 480px) calc(0.5 * 480px) hsla(0, 0%, 0%, 0.1); /* 水平偏移，垂直偏移，模糊半径，阴影颜色 */
    width: 768px;
    max-width: 100%;
    min-height: 480px;
    display: flex;
}

.form-container {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    flex-direction: column;
    background-color: #ffffff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.left-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 38px;
    height: 38px;
}

.left-container {
    width: 50%;
    background-color: #b3c8e106;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    color: #1b365c;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.right-welcome-title {
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 2rem;
}

.left-welcome-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
}

.left-welcome-container > * {
    margin-top: 1;
    margin-bottom: 10px;
    line-height: 1;
    color: #f4f4f4;
}

.left-welcome-title {
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    letter-spacing: 3px;
    font-weight: 300;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.left-welcome-content {
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 300;
    width: 80%;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.8px;
}

