/* Botón profesional para iniciar sesión con Google */
.google-login-btn {
    width: 100%;
    min-height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 800;
    font-size: 0.96rem;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: all 0.22s ease;
}
.google-login-btn:hover {
    color: #111827;
    text-decoration: none;
    transform: translateY(-1px);
    border-color: #d1d5db;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
}
.google-icon-box {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.google-icon-box svg {
    width: 22px;
    height: 22px;
    display: block;
}
.google-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    color: #9ca3af;
    font-weight: 700;
    font-size: 0.86rem;
}
.google-divider::before,
.google-divider::after {
    content: '';
    height: 1px;
    flex: 1;
    background: #e5e7eb;
}
.google-secure-note {
    margin-top: 12px;
    color: #6b7280;
    font-size: 0.88rem;
    text-align: center;
}
.google-secure-note i {
    color: #16a34a;
    margin-right: 5px;
}
.google-complete-page {
    min-height: 76vh;
    padding: 50px 16px;
    background: linear-gradient(180deg, #fff5f6 0%, #ffffff 50%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.google-complete-card {
    width: 100%;
    max-width: 760px;
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}
.google-user-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}
.google-user-preview img,
.google-avatar-fallback {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 14px 30px rgba(220, 38, 38, 0.14);
}
.google-avatar-fallback {
    background: #fee2e2;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.google-user-preview h1 {
    margin: 0;
    color: #111827;
    font-weight: 900;
    font-size: 1.8rem;
}
.google-user-preview p {
    margin: 3px 0 0;
    color: #6b7280;
    font-weight: 700;
}
.google-complete-form label {
    font-weight: 800;
    color: #1f2937;
    margin: 12px 0 7px;
    display: block;
}
.google-complete-form input[type="text"] {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
}
.google-complete-form input[type="text"]:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.10);
}
.google-role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.google-role-grid label {
    margin: 0;
    cursor: pointer;
}
.google-role-grid input {
    display: none;
}
.google-role-grid span {
    min-height: 112px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    transition: all 0.22s ease;
}
.google-role-grid i {
    color: #dc2626;
    font-size: 22px;
}
.google-role-grid strong {
    color: #111827;
}
.google-role-grid small {
    color: #6b7280;
    font-weight: 600;
}
.google-role-grid input:checked + span {
    border-color: #ef4444;
    background: #fff5f5;
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.10);
}
.google-employer-fields {
    display: none;
    margin-top: 12px;
    padding: 16px;
    border: 1px solid #fee2e2;
    background: #fff7f7;
    border-radius: 18px;
}
.btn-google-finish {
    width: 100%;
    border: 0;
    border-radius: 16px;
    margin-top: 20px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #ef233c, #c90014);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(220, 38, 38, 0.22);
}
@media (max-width: 640px) {
    .google-complete-card { padding: 20px; border-radius: 22px; }
    .google-user-preview { align-items: flex-start; }
    .google-user-preview h1 { font-size: 1.45rem; }
    .google-role-grid { grid-template-columns: 1fr; }
}
