﻿
@keyframes zoomINZoomOut {
    0% {scale: 100%; }
    25% { scale: 120%; }
    50% {scale: 100%; }
    100% {scale: 100%; }

}

.CustomRegisterButton
{
    font-weight: 600;
    padding: 10px 30px;
    border: 1px solid #454747;
    border-radius: 8px;
    color: rgb(57, 58, 58);
    text-decoration: none;
    text-transform: uppercase;
    background-color: #e2c55e;
    cursor: pointer;
    font-size:1.2em;
    height: 50px;
    align-items: center;
    display: flex;
}

.CustomLoginButton:hover {
  background-color: #ffffff;
  color: #393939;
}

.CustomRegisterButton:hover
{
    background-color: white;
    color:black;
}

/* Floating Button Styles */
.floating-bt {
  position: fixed;
  bottom: 30px;
  right: 40px;
  color: white;
  border-radius:8px;
  box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
   animation: zoomINZoomOut 4s 3s  ease-in-out infinite;
}

.floating-bt:hover {
  transform: scale(1.1);
}

.floating-bt:active {
  transform: scale(0.95);
}