.card{
    margin: 0 auto; /* 上下边距为0，左右自动居中 */
    width: 500px;
    max-width: 100%; /* 保证在小屏幕上完整显示 */
    margin-top: 30px; /* 根据需要调整与标题之间的距离 */
    background: rgba(255, 255, 255, 0.1); /* 半透明背景 */
    backdrop-filter: blur(10px); /* 毛玻璃效果 */
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 400px;
    color: white;
}

.inputZone{
    position: relative;
    margin-bottom: 25px;
}
input.form-control{
    padding-left: 43px;
}


#hide-password{
    left: 90%;
    transition: all;
    cursor: pointer;
}
#hide-password:hover{
    transform: scale(1.5);
}
#gotoregister,#reset-password{
    margin-top: 20px;
    text-align: center;
    font-size: 12px;   
} 


/* login.css */

body {
    margin: 0;
    padding: 0;
    /* background: linear-gradient(135deg, #e2e6f5, #3421e2);  */
    /* background: linear-gradient(360deg, #e2e6f5, #3421e2);  */
    /* background: linear-gradient(135deg, #9face7, #76c6f1, #41aee9,#0baaff);  */
    background: linear-gradient(135deg,  #aad7f0, #9dd2ee, #76c6f1, #41aee9,#0baaff); 
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



.card-title {
    color: white;
    font-weight: bold;
}

.inputZone {
    position: relative;
    margin-bottom: 1rem;
}

.inputZone img {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 20px;
    /* pointer-events: none; */
}

.inputZone input {
    padding-left: 40px;
    background-color: rgba(250, 248, 246, 0.973);
    color: #000000;
    border: none;
    border-radius: 8px;
    height: 45px;
}

.inputZone input::placeholder {
    color: rgba(11, 12, 20, 0.7);
}

#hide-password {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 20px;
    cursor: pointer;
}

.alert-danger {
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px;
}

.btn-primary {
    background-color: #ffffffcc;
    border: none;
    color: #333;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffffffee;
}

#gotoregister,
#reset-password {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

#gotoregister a,
#reset-password a {
    color: #fff;
    text-decoration: underline;
}








/* 船舵图标 */
.title-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: -40px;
}

.custom-icon {
    width: 80px !important;
    height: 80px !important;
    animation: rotate 6s linear infinite !important;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}







    /* 标题 */
/* 确保标题容器居中 */
.title-container {
    text-align: center;
    margin-top: -60px; /* 根据需要调整顶部边距 */
}

.artistic-title {
    font-family: 'Arial', sans-serif; /* 使用广泛支持的字体 */
    font-size: 48px; /* 字体大小可以根据需要调整 */
    color: #09345f !important; /* 深蓝色调，显得专业 */
    font-weight: bold;
    letter-spacing: 2px; /* 增加字母间距，提升可读性 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* 轻微阴影，增加立体感 */
}

/* 底部 */
.browser-tip-inline {
    font-size: 13px;
    color: #777;
    /* background-color: #f0f0f0; */
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-left: 8px;
    margin-top: 10px;
}





