* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
}

body {
    background-image: url(/static/img/Purple-Aesthetic-Wallpaper.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(255, 0, 0, 0.1);
    width: 35%;
    padding: 25px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.321);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 20px black;
}

h1 {
    font-size: 2.8rem;
    color: white;
    margin: 0 0 20px;
    letter-spacing: 3px;
}

.input-wrap {
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    height: 60px;
    width: 90%;
    border-radius: 50px;
    box-shadow: 0 0 10px white;
}

input {
    background-color: transparent;
    font-size: 1.2rem;
    color: white;
    padding: 5px 25px;
    width: 250px;
    margin-left: 20px;
}

input::placeholder {
    font-size: 1.2rem;
    color: white;
}

.input-wrap i {
    font-size: 1.2rem;
    color: white;
    padding-right: 25px;
}

.button {
    font-size: 1.5rem;
    color: rgb(53, 28, 28);
    height: 65px;
    width: 90%;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
    background-color: skyblue;
}

button:hover {
    background-color: rgb(109, 109, 181);
}

#get-captcha {
    margin-right: 20px;
    width: 100px;
    height: 50px;
    background-color: skyblue;
    border-radius: 25px;
    cursor: pointer;
}

#get-captcha:hover {
    background-color: rgb(109, 109, 181);
}

.reg {
    font-size: 1.2rem;
    color: white;
    margin-top: 30px;
}

.rem a {
    font-weight: 500;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: white; /* 设置文字颜色 */
    -webkit-box-shadow: 0 0 0px 1000px transparent inset; /* 设置背景透明 */
    transition: background-color 5000s ease-in-out 0s; /* 延长背景色变化的过渡时间，视觉上让其一直透明 */
}