.apple-signin-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: .75em 1em;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-size: .95rem !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

.apple-signin-button:hover {
    background-color: #181818;
    color: #f5f5f5;
    transform: scale(1.0075);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
}

.apple-icon {
    width: 18px;
    height: 18px;
}

.divider-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.divider-with-text hr {
    flex: 1;
    border: none;
    border-top: 1px solid #9c9c9c;
    margin: 0;
}

.divider-with-text .divider-text {
    padding: 0 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

