/**
 * 2025 MP Soft
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 *
 * @author    MP Soft
 * @copyright 2025 MP Soft
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

/* General front office styles for the module */
.mpfrontlogin-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  background-color: #4CAF50;
  color: white;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  display: flex;
  align-items: center;
  animation: slideIn 0.3s ease-out forwards;
}

.mpfrontlogin-notification.error {
  background-color: #f44336;
}

.mpfrontlogin-notification i {
  margin-right: 10px;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Logout button styling */
.mpfrontlogin-logout {
  display: inline-block;
  padding: 8px 16px;
  background-color: #f8f9fa;
  color: #495057;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.mpfrontlogin-logout:hover {
  background-color: #e9ecef;
  color: #212529;
  text-decoration: none;
}

.mpfrontlogin-logout i {
  margin-right: 5px;
}
