/* Custom Login Widget Styles */
.custom-login-widget {
    display: inline-block;
    margin: 0;
    padding: 0;
}

/* Login Button Styles */
.custom-login-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    /*background-color: #CB8E36 !important;*/
    background-image: linear-gradient(to bottom, #E7BD74, #C6892E);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

.custom-login-button:hover {
    background-color: #c5a227;
    /*transform: translateY(-2px);*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-login-button i {
    margin-right: 8px;
    font-size: 16px;
}

/* User Info Styles */
.custom-user-info {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

.custom-user-info:hover {
    color: #d4af37;
}

.custom-user-info i {
    margin-right: 8px;
    font-size: 20px;
    color: #d4af37;
}

.user-email {
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .custom-login-button span,
    .user-email {
        display: none;
    }

    .custom-login-button,
    .custom-user-info {
        padding: 8px 12px;
    }

    .custom-login-button i,
    .custom-user-info i {
        margin-right: 0;
    }
}