/* 表单区域样式 */


.form-section {
    background: linear-gradient(135deg, #ff6b9c, #ff2e63);
    padding: 20px 0;
    color: white;
}

.form-title {
    color: white !important;
    margin-bottom: 8px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-title::before {
    content: '';
    width: 5px;
    height: 32px;
    border-radius: 12px;
    background-color: white;
    margin-right: 10px;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    /* background: rgba(255, 255, 255, 0.95); */
    padding: 30px;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: #ff2e63;
    box-shadow: 0 0 0 2px rgba(255, 46, 99, 0.1);
    outline: none;
}

.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #666;
    background: white;
    transition: all 0.3s;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-select:focus {
    border-color: #ff2e63;
    box-shadow: 0 0 0 2px rgba(255, 46, 99, 0.1);
    outline: none;
}

.form-btn {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #ff2e63, #ff6b9c);
    color: white;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 46, 99, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 20px;
}

.form-btn:hover {
            text-decoration: none;
          color: inherit;
          outline: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 46, 99, 0.4);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 15px;
}

/* 表单验证样式 */
.form-input.error {
    border-color: #ff4757;
}

.form-error {
    color: #ff4757;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.form-error.show {
    display: block;
}