html {
    font-size: 16px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
    position: relative;
  min-height: 100vh;
}

body {
    min-height: 100vh;
  background: linear-gradient(115deg, #b8c6db, #f5f7fa, #a9c9ff, #ffbbec);
  
color: #212529; /* 将字体颜色设置为白色 */
}
 
  .text-danger {
    color: #0d6efd !important; /* 你想要的颜色代码，例如橙色 */
}
 
  a {
    color: #3d7cc6; /* 修改为你想要的颜色 */
}


.btn-primary {
    background: linear-gradient(90deg, #1CB5E0, #000046); /* 渐变背景 */
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 30px; /* 圆形按钮 */
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); /* 轻微阴影 */
    transition: all 0.3s ease; /* 过渡效果 */
    position: relative;
    overflow: hidden; /* 隐藏溢出 */
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.4s ease, height 0.4s ease, top 0.4s ease, left 0.4s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.btn-primary:hover::before {
    width: 0%;
    height: 0%;
    top: 50%;
    left: 50%;
}

.btn-primary:hover {
    transform: scale(1.05); /* 悬停时稍微放大 */
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3); /* 增加阴影 */
}


.btn-primary {
    padding: 0.6rem 0.7rem;
    background: linear-gradient(90deg, #fc466b, #3f5efb);
    color: white;
    border: none;
    border-radius: 30px;
    transition: background 0.5s ease;
}

.btn-primary:hover {
    background: linear-gradient(360deg, #3f5efb, #fc466b); /* 旋转背景色 */
}



.pt-2{
    transform: scale(0.90); /* 放大到 110%，缩小到 90% 可用 scale(0.9) */
    background: linear-gradient(91deg, #46d8fc1a, #fbc13f1a);
    position: relative;
    padding: 10px 6px;
    margin-top: 5px;
    cursor: pointer;
    font-size: 15px; /* 自定义字体大小 */
    background-clip: padding-box;
    /* 渐变边框，带有光泽 */
    border: 2px solid transparent;
    border-image: linear-gradient(to right, #36d1dcad, #5b86e5ab, #8e44ada8) 1;
    border: 3px solid #2e82dcad; /* 边框颜色和宽度 */
    border-radius: 18px; /* 圆角 */
    padding: 20px 04px; /* 内边距，确保内容不紧贴边框 */

    /* 添加内阴影，使输入框更立体 */
    box-shadow: inset 0 1px 3px rgb(255 255 255), 
                0 0 10px rgb(58 213 183);
}



.display-6{
   
    font-size: 21px; /* 自定义字体大小 */
  }



/* 默认样式 */
.form-control {
    background: linear-gradient(91deg, #46d8fc1a, #fbc13f1a);
    font-size: 15px;
    border-image: linear-gradient(to right, #36d1dcad, #5b86e5ab, #8e44ada8) 1;
    border: 2px solid #2e82dcad;
    border-radius: 18px;
    padding: 1px 3px;
    box-shadow: inset 0 1px 3px rgb(231 153 231 / 74%), 0 0 10px rgb(58 213 183);
}

/* 移动端样式 */
@media (max-width: 768px) {
    .form-control {
        font-size: 11.5px; /* 更小的字体大小 */
        padding: 2px 2px; /* 更适合移动端的内边距 */
        border-radius: 12px; /* 更小的圆角 */
        box-shadow: inset 0 1px 2px rgb(231 153 231 / 50%), 0 0 6px rgb(58 213 183); /* 减弱阴影效果 */
    }
}





.text-start{
    display: inline-block;
    /* background: linear-gradient(90deg, #fc466b1c, #3f5efb1f); */
    position: relative;
    cursor: pointer;
    font-size: 15px; /* 自定义字体大小 */
    background-clip: padding-box;
    /* 渐变边框，带有光泽 */
    border: 2px solid #e564648a; /* 边框颜色和宽度 */
    border-radius: 12px; /* 圆角 */
    padding: 5px 20px; /* 上下内边距 15px，左右内边距 30px，可根据需要调整 */
    /* line-height: 1.5; */ /* 调整行间距，使文本上下留白更多 */
    /* 添加内阴影，使输入框更立体 */
    /* box-shadow: inset 0 1px 1px rgb(237 216 191 / 60%), 
                0 0 5px rgb(107 58 213 / 54%); */
}
