@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

:root {
  --animate-speed: 1s;
  --opacity: 0
}

html {
    scroll-behavior: smooth;
  }

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
}

body {
  background: url('background.png');
}

.main {
    width: 100%;
    display: flex;
    /*grid-template-columns: 1fr 2fr;*/
    
}


/* Left Side */

.left h1 {
  color: #F98948;
  font-size: 40px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 100vh;
  width:600px;
}

/* Login Content */
.user-details .input-box input {
  height: 30px;
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding-left: 10px;
  font-size: 18px;
  color: grey;
}

.user-details .input-box input:hover {
 border-color: #F98948;
}

.user-details .input-box .details {
  margin-top: 20px;
  display: block;
  font-weight: 500;
  font-size: 18px;
  color: #F98948;
}

.pass{
  margin: -5px 0 20px 5px;
  color: #a6a6a6;
  cursor: pointer;
}

.pass:hover{
  text-decoration: underline;
}

.btn{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  margin-top: 20px;
  width: 100%;
  height: 50px;
  border: 1px solid;
  background: #F98948;
  border-radius: 25px;
  font-size: 18px;
  color: #e9f4fb;
  font-weight: 700;
  cursor: pointer;
  outline: none;
}

.btn:hover{
  border-color: #f8792f;
  transition: .5s;
}

.btn_forgot{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  margin-top: 20px;
  width: 100%;
  height: 50px;
  border: 1px solid;
  background: red;
  border-radius: 25px;
  font-size: 18px;
  color: #e9f4fb;
  font-weight: 700;
  cursor: pointer;
  outline: none;
}

.btn_forgot{
  border-color: #f8792f;
  transition: .5s;
}


/* Right Side */
.right h2 {
  opacity: 0;
  transform: translateY(100px);
  animation: heading2 var(--animate-speed) forwards ease-in;
  color: #F98948;
  font-weight: 300;
  font-size: 50px;
  padding-bottom: 100px;
}

@keyframes heading2 {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.right h1 {
  opacity: 0;
  transform: translateY(100px);
  animation: heading var(--animate-speed) forwards ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-bottom: 50px; */
  font-size: 100px;
  font-weight: 200;
  color: #fff;
}

@keyframes heading {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 100vh;

}

.sponsors .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.sponsors img {
  max-height: 100px; /* Adjust the max-height as needed */
  margin: 10px; /* Add some margin between logos */
  object-fit: contain; /* Ensure the image is contained within the bounds */
  vertical-align: middle;
}

/* Language Buttons */
.demo {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  

}

.demo a {
  text-decoration: none;
  color: black;
}

.lang {
  margin: 0 auto;
  top: 10px;
  padding-bottom: 20px;
  
}

.button_lang {
  cursor: pointer;
  display: inline-block;
  border-radius: 10px;
  width: 6em;
  transition: 0.25s ease;
}

/* .flag img{
  display: flex;
  justify-content: ;
  height: 10px;
  width: 10px;
} */

.button_lang:hover {
  color: #fff;
  background: #fa9f6b;
  transition: 0.25s ease;
}

.current_lang {
  color: #fff;
  background: #fa9f6b;
}

/* .right img {
  /* background: center center/cover;
  width: 100%;
  height: 100vh;
} */
