.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 20px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9),
                      url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}

.register-wrapper {
    width: 100%;
    max-width: 700px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 注册头部 */
.register-header {
    margin-bottom: 20px;
}

.register-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.register-header h2 {
    font-size: 1.5rem;
    color: #495057;
}

/* 用户类型选择 */
.user-type-selector .btn {
    padding: 10px;
    font-weight: 500;
}

/* 表单样式 */

.register-form .form-control {
    height: 50px;
    border-radius: 5px;
}

.register-form .form-floating label {
    color: #6c757d;
    padding: 0.5rem 1.75rem;
}

.register-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* 协议复选框 */
.form-check-label a {
    color: #0d6efd;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* 注册按钮 */
#registerBtn {
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
}

#registerBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .register-wrapper {
        padding: 20px;
    }

    .register-header h1 {
        font-size: 2rem;
    }

    .register-header h2 {
        font-size: 1.25rem;
    }

    .employer-fields .row {
        flex-direction: column;
    }
}