@charset "UTF-8";

body {
    width: 100vw;
    height: 100vh;
	background-color: #211a1b;
/*
    background-image: url('/./public/silver.jpg');
    background-size: cover;
    background-position: center; 
*/
}
.no-padding-margin {
  padding: 0 !important;
  margin: 0 !important;
}
.toggle-chat {
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* Pulsing gradient for inactive state */
  background-image: linear-gradient(45deg, #9e9e9e, #e0e0e0);
  color: #000;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  text-align: left;
}

.toggle-chat:hover::after {
  /* Pulsing effect for hover, similar to your active state for consistency */
  animation: pulse 2s infinite linear;
}

.toggle-chat.active {
  /* Active state styles */
  background-image: linear-gradient(45deg, #6e8efb, #88e3a777);
  color: white;
}

.toggle-chat::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(60deg, rgba(255,255,255,0.15), rgba(255,255,255,0.5), rgba(255,255,255,0.15));
  z-index: -1;
  animation: none;
}

.toggle-chat.active::after {
  animation: pulse 2s infinite linear;
}

@keyframes pulse {
  0% {
      transform: rotate(0deg) translateX(-100%);
  }
  50% {
      transform: rotate(360deg) translateX(100%);
  }
  100% {
      transform: rotate(720deg) translateX(-100%);
  }
}

.row .col-lg-6 {
	display: flex;
    align-items: center;  
}

  .button-visual {
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-image: linear-gradient(45deg, #9e9e9e, #e0e0e0);
    color: #000;
    display: flex;
    align-items: center;
        background: url('/./public/silver.jpg');
    background-size: cover;
    background-position: center;
    cursor: pointer;
    padding: 10px 26px;
    text-align: center;
	  border-radius: 5px;
	  border: 0px;
	  justify-content: center;
	  	  font-weight: bold;
	  margin-bottom: 20px;
    z-index: 999;
}
.button-visual:hover {
	color: black;
	text-decoration: none;
}
.button-visual1:hover {
	color: black;
	text-decoration: none;
}
  .button-visual1 {
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-image: linear-gradient(45deg, #9e9e9e, #e0e0e0);
    color: #000;
    display: flex;
    align-items: center;
        background: url('/./public/gold.jpg');
    background-size: cover;
    background-position: center;
    cursor: pointer;
    padding: 10px 26px;
    text-align: center;
	  border-radius: 5px;
	  border: 0px;
	  justify-content: center;
	  font-weight: bold;
	  margin-bottom: 20px;
    z-index: 999;
	  
}

.button-visual:hover::after .button-visual1:hover::after {
    animation: pulse 2s infinite linear;
}

.button-visual.active .button-visual1.active {
    /* Active state styles */
    background-image: linear-gradient(45deg, #6e8efb, #88e3a777);
    color: white;
}

.button-visual::after .button-visual1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(60deg, rgba(255,255,255,0.15), rgba(255,255,255,0.5), rgba(255,255,255,0.15));
    z-index: -1;
    animation: none;
}

.button-visual.active::after .button-visual1.active::after {
    /* Ensure the pulsing animation plays for the active state */
    animation: pulse 2s infinite linear;
}

@keyframes pulse {
    0% {
        transform: rotate(0deg) translateX(-100%);
    }
    50% {
        transform: rotate(360deg) translateX(100%);
    }
    100% {
        transform: rotate(720deg) translateX(-100%);
    }
}


#loginButton2 {
	background-image: url('/./public/gold.jpg');
}

.footer {
	bottom: 0;
	position: relative;
}

.space {
	height: 20px
}

.space1 {
	height: 100px;
}

#second-column {
	order: 1;
}

#first-column {
	order: 2;
}

#copyrights {
	margin: 0;
	padding: 0;
	position: relative;
}
@media screen and (max-width: 450px) {

	h1 {
		font-size: 25px;
	}

}

.button-visual2 {
	    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    z-index: 1;
    /* Pulsing gradient for inactive state */
    background-image: linear-gradient(45deg, #9e9e9e, #e0e0e0);
    color: #000;
    display: flex;
  background: #dc3545;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    padding: 10px 26px;
    text-align: center;
	  border-radius: 5px;
	  border: 0px;
	  justify-content: center;
	  font-weight: bold;
	  margin-bottom: 20px;
position: relative;
	left: 50%;
	transform: translate(-50%);
	width: 200px;
}
