/* 
 * Register Page Specific Styles
 * 注册页面专用样式
 */

.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.register-card {
    width: 100%;
    max-width: 450px;
    padding: 50px 40px;
}

.system-title {
    color: var(--primary-blue);
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.register-form {
    margin-top: 30px;
}

/* 下拉选择框样式 */
.select-role {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid var(--border-light);
    background: transparent;
    font-size: 1em;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232196F3' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 5px center;
    padding-right: 30px;
}

.select-role:focus {
    border-bottom-color: var(--primary-blue);
}

.select-role option {
    background-color: var(--primary-white);
    color: var(--text-dark);
    padding: 10px;
}

.select-role option[value=""] {
    color: #999;
}

.login-link {
    text-align: center;
    margin-top: 25px;
    color: var(--text-gray);
    font-size: 0.95em;
}

.login-link a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-link a:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .register-card {
        padding: 40px 30px;
    }
    
    .system-title {
        font-size: 1.5em;
        margin-bottom: 40px;
    }
}
