* { box-sizing: border-box; }


body {
  font-family: "Poppins", sans-serif;
  margin: 0px;
}

.container {
  display: flex;
  height: 100vh;
}

.left {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  animation-name: left;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 1s;
}

.right {
  flex: 1;
  background-color: black;
  background-image: url("../PICTURE/global.png"); 
  background-size: cover;
  background-repeat: no-repeat;
  animation: fadeIn 3s;
  color: white;
  cursor: default;
}
.right > h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: -100px;
  margin-left: 20px;
  white-space: nowrap
}
.right > h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
  margin-left: 30px;
  color: #d5e220;
  white-space: nowrap
}
.header > img {
  height: 80px;
  flex: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  object-position: center;
  padding-bottom: -200px;
}

.header > h2 {
  margin: 0;
  color: purple;
}

.header > h4 {
  margin-top: 10px;
  font-weight: normal;
  font-size: 15px;
  color: rgba(0,0,0,.4);
}

.form {
  max-width: 80%;
  display: flex;
  flex-direction: column;
}

.form > p {
  text-align: right;
}

.form > p > a {
  color: #000;
  font-size: 14px;
}

.form-field {
  height: 46px;
  padding: 0 16px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  outline: 0;
  transition: .2s;
  margin-top: 20px;
}

.form-field:focus {
  border-color: #0f7ef1;
}

.form > button {
  padding: 12px 10px;
  border: 0;
  background: linear-gradient(to right, #de48b5 0%,#0097ff 100%); 
  border-radius: 3px;
  margin-top: 10px;
  color: #fff;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.form > button:hover {
  background: white;  
  color: purple;
  border: 2px solid purple; 
  letter-spacing: 10px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  font-weight: 700;
}



.animation {
  animation-name: move;
  animation-duration: .4s;
  animation-fill-mode: both;
  animation-delay: 2s;
}

.i1 {
  animation-delay: 2s;
}
.a1 {
  animation-delay: 2s;
}

.a2 {
  animation-delay: 2.1s;
}

.a3 {
  animation-delay: 2.2s;
}

.a4 {
  animation-delay: 2.3s;
}

.a5 {
  animation-delay: 2.4s;
}

.a6 {
  animation-delay: 2.5s;
}
button{
  margin-top: 20px;
  width: 200px ;
  height: auto;
  padding: 10px 20px;
  background: radial-gradient(circle, #85037a 0%, #9900ad 100%);
  color: white;
  font-family: "Poppins", sans-serif;
  border: none;
}
button:hover{
  background: radial-gradient(circle, #a50197 0%, #bf01d8 100%);

}
#logo {
  height: 50px;
  float: left;
  position: absolute;
  cursor: pointer;
  float: right;
    top:10px;
    right: 10px;
}

@keyframes move {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes left {
  0% {
    opacity: 0;
    width: 0;
  }

  100% {
    opacity: 1;
    padding: 20px 40px;
    width: 440px;
  }
}

@media (max-width: 375px) 
 {
  .right {
    display: none;
  }
  .right > h1 {
    font-size:5vw;
  }
}
@media (max-width: 425px) 
 {
  .right {
    display: none;
  }
  .right > h1 {
    font-size:5vw;
  }
}
@media (max-width: 768px) 
 {
  .right {
    display: none;
  }
}
@media (max-width: 1024px) 
 {
  .right > h1 {
    font-size:10vw;
  }
}
@media (max-width: 1440px) 
{
  .right > h1{
    font-size:15vw;
    margin-bottom: -70px;

  }
}
@media (max-width: 4000px) 
{
  .right > h1{
    font-size:15vw;
  }
  .right > h2{
    font-size: 3vw;
  }
}



