.card{
    margin-top: 20%;
    margin-left: 20%;
    width: 500px;
    /* height: 750px; */
    height: auto;
}

.inputZone{
    position: relative;
    margin-bottom: 25px;
}
input.form-control{
    padding-left: 43px;
}
img{
    /* width: 3%; */
    position: absolute;
    top: 30%;
    left: 10px;
}

#privacy{
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
}
#gotologin{
    margin-top: 20px;
    text-align: center;
    font-size: 18px;  
} 

/* 发送验证码 */
.input-with-button {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
  }
  
  .input-with-button input {
    flex: 1; /* 让输入框占满剩余空间 */
    margin-right: 5px; /* 按钮与输入框之间的空隙 */
  }
  
  .input-with-button .btn {
    white-space: nowrap; /* 防止按钮文字换行 */
  }

  .input-icon {
    position: absolute;
    top: 30%;
    left: 10px;
    width: 20px;
    height: auto;
    pointer-events: none;
}

/* 设置body的样式以应用渐变背景 */
body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* 确保背景覆盖整个视口高度 */
  background: linear-gradient(135deg,  #aad7f0, #9dd2ee, #76c6f1, #41aee9,#0baaff); 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* sweetalert2 */
/* 整体容器 */
.small-swal-container {
  zoom: 0.8; /* 可根据需要调整缩放比例 */
}

/* 弹窗本身 */
.small-swal-popup {
  font-size: 16px; /* 调整基础字体大小 */
}

/* 标题样式 */
.small-swal-title {
  font-size: 1.4em; /* 根据需求调整标题大小 */
}

/* 文本样式 */
.small-swal-text {
  font-size: 3em; /* 根据需求调整文本大小 */
}

/* 确认按钮样式 */
.small-swal-button {
  font-size: 0.9em; /* 缩小按钮文字大小 */
  padding: 5px 20px; /* 调整内边距使按钮看起来更紧凑 */
}






/* 底部 */


.browser-tip-container {
    max-width: 500px; /* 和 .card 宽度一致 */
    margin: 0 auto;   /* 居中 */
    padding: 0 15px;
}

.browser-tip-inline {
    font-size: 13px;
    color: #777;
    background-color: #f9f9f9;
    border-left: 4px solid #409EFF;
    padding: 10px 15px;
    line-height: 1.6;
    display: block;
    border-radius: 4px;
}