/*

Template: COINEX - Crypto Currency HTML Template 
Author: iqonicthemes.in
Version: 1.5
Design and Developed by: iqonicthemes.in

NOTE: This is main stylesheet of template, This file contains the styling for the actual Template. Please do not change anything here! write in a custom.css file if required!

*/

/* 
*--------------------------------------------------------------
  # forms Login | Input  Sections
  --------------------------------------------------------------*/
*/ .auth {
  padding: 60px 0;
  overflow: hidden;
}

.h-100 {
  height: 100% !important;
  background: #044d08;
}

.auth__logo {
  max-height: 70px;
}

.auth .card {
  max-width: 450px;
  display: block;
  margin: 0 30px;
  padding: 20px 30px;
  border-color: #edf2f9;
  -webkit-box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
  box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
}

@media (max-width: 600px) {
  .auth .card {
    margin: 0 10px;
  }
}

.auth .card h1 {
  font-size: 26px;
  line-height: 29px;
  font-weight: 600;
  color: #131519;
}

.auth .card h2 {
  font-size: 17px;
  line-height: 29px;
  font-weight: 500;
  color: #131519;
  text-transform: capitalize;
}

.auth .card__form {
  width: 100%;
  background: transparent;
}

.auth .card__form ::-webkit-input-placeholder {
  color: #999;
}

.auth .card__form .form-control {
  display: block;
  width: 100%;
  padding: 12px 22px!important;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #131519;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 4px;
  -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}

.auth .card__form .form_control {
  display: block;
  width: 100%;
  padding: 8px 22px;
  font-size: 0.9375rem;
  border: 1px solid #999;
}

.auth .card__form input,
.auth .card__form select {
  border-radius: 4px;
  box-shadow: none;
  font-size: 12px;
  outline: none;
  padding: 20px 12px;
  transition: border-color 0.15s ease-in-out;
}

/* .auth .card__form select option{
  border: 1px solid #999;

} */

.auth .card__form input:focus,
.auth .card__form select:focus {
  border: 1px solid #131519;
}

.auth .card__form label {
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: left !important;
}

.auth .card__form button {
  text-transform: capitalize;
  font-size: 15px;
  background: #f9b707 !important;
  color: #fff !important;
  font-weight: 500;
  padding: 12px 20px;
  width: 100%;
  transition: all 0.3s;
  border-radius: 4px;
  margin: 0;
  border: none !important;
}

.auth .card__form button:focus {
  border: none !important;
}

.auth .card__form small {
  color: rgb(71, 71, 71);
  display: block;
  text-transform: capitalize;
  font-size: 14px;
}

.auth .card__form small a {
  color: #f9b707;
}

/* Intro Video*/
    .fixed-video-container {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .fixed-video {
        margin-left: 5%;
        border-radius: 10px;
    }
/* Intro Video End*/


/* Whatsapp Widget */

#whatsapp-chat {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  opacity: 0; /* Initially hidden */
  visibility: hidden; /* Ensures it doesn't take up space when hidden */
  transform: scale(0.9); /* Initial scale for transition effect */
  transition: opacity 1s ease, transform 1s ease, visibility 1s ease;
}

#whatsapp-chat.visible {
  opacity: 1; /* Fully visible */
  visibility: visible;
  transform: scale(1); /* Restores scale */
}

#whatsapp-chat img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#whatsapp-chat img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Whatsapp Widget end */