/**
 * 复写杜鹃主题左上角logo的css大小
 */
.cuckoo .title .logo-out {
    height: 45px !important;
    background-size: 100% 100% !important;
}

/**
 * 复写杜鹃主题左上角logo旁边字体间距
 */
.cuckoo .title .text {
    margin-left: 18px !important;
}

/**
 * 复写杜鹃主题背景图片的css大小
 */
.cuckoo .cuckoo-bg {
    background-size: 100% 101% !important;
}

/**
 * 复写杜鹃主题登录页，登录框上面logo的css大小
 */
.cuckoo .cuckoo-bg .cuckoo-content .logo-in {
    background-size: 100% 100% !important;
    width: 160px !important;
    height: 45px !important;
}

/**
 * 复写杜鹃主题登录页，登录框背景颜色
 */
.cuckoo .cuckoo-bg .cuckoo-content {
    background: rgb(72 72 72 / 60%) !important;
}

/**
 * 复写杜鹃主题登录页，手机号前下拉框
 */
.entry-input-form .entry-input_group .select-input-wrapper{
    padding-left: 10px !important;
}

/**
 * 复写杜鹃主题登录页，手机号输入框位置
 */
.entry-input-form .select {
    margin: 20px 8px 0 0 !important;
}

.yulan .sidebar>header .logo {
    background-color: white !important;
}

.gene .gene-content .entry-input-tip span {
    color: rgba(0, 0, 0, .65) !important;
}


/*手机验证码部分*/

/* 基础样式 */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 按钮样式 */
.btn-primary {
    background-color: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
}

/* 弹窗背景 */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

/* 弹窗内容 */
.verification-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 24rem;
    max-width: 90%;
    z-index: 20;
    animation: fadeIn 0.3s ease-in-out;
}

/* 弹窗头部 */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.close-btn {
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
}

.close-btn:hover {
    color: #6b7280;
}

/* 表单组 */
body {
    font-family: Arial, sans-serif;
    padding: 20px;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.modal-title {
    margin-top: 0;
    color: #333;
}
.modal-input {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
.modal-button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    height: 18px;
}


