/**
 * ============================================================
 * Authentik SSO Button Styles
 * ============================================================
 * 
 * Tambahkan CSS ini ke stylesheet login page Anda.
 * Bisa di-include terpisah atau digabung ke CSS login yang sudah ada.
 */

.authentikBtn {
    font-weight: 500;
    color: #444;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 10px;
    padding: 12px;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    font-size: 0.95rem;
}

.authentikBtn:hover {
    background-color: #f5f5f5;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
    color: #333;
    text-decoration: none;
}

.authentikBtn:active {
    background-color: #eee;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.authentikBtn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    object-fit: contain;
}

/* Divider between SSO and normal login */
.sso-divider {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.sso-divider hr {
    flex: 1;
    margin: 0;
    border-top: 1px solid #e0e0e0;
}

.sso-divider span {
    font-size: 0.7rem;
    padding: 0 10px;
    color: #999;
}
