/* 認證頁面共用樣式 */

/* Hero Section */
.hero-overlay {
    background: linear-gradient(135deg, #005a87 0%, #003d5c 100%);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #005a87;
    box-shadow: 0 0 0 3px rgba(0, 90, 135, 0.1);
}

.btn-primary {
    background-color: #005a87;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: #003d5c;
}

.btn-primary:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.btn-outline {
    background-color: white;
    color: #005a87;
    border: 2px solid #005a87;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background-color: #005a87;
    color: white;
}

/* 角色選擇卡片 */
.role-card {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.role-card:hover {
    border-color: #005a87;
    box-shadow: 0 4px 12px rgba(0, 90, 135, 0.1);
}

.role-card.selected {
    border-color: #005a87;
    background-color: #f0f9ff;
    box-shadow: 0 4px 12px rgba(0, 90, 135, 0.15);
}

.role-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
}

.role-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #f3f4f6;
    border-radius: 9999px;
}

.role-card.selected .role-badge {
    background-color: #005a87;
}

.role-card.selected .role-badge span {
    color: white !important;
}
