.container {
  display: flex;
  flex-direction: row;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(to bottom, #33ccff 0%, #ff99cc 100%);
}

.left-half {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-half img {
 height: 90%;
 width:90%;
  object-fit: cover;
}

.right-half {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  width: 80%;
  max-width: 500px;
  padding: 50px;
  background-color:white;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 75%;
}

.logo img {
  width: 100px;
  height: 90px;
  margin-bottom: 2px;
}

h1 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  text-align: left;
}

input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}

button[type="submit"] {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #008CBA;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #006B8E;
}
/* Set up the container for the text */
.text-container {
  position: absolute;
  top: 70%;
  left:25%;
  transform: translate(-50%, -50%);
  text-align: center;
}


/* Set up the styles for the text */
.text-container h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  
  font-family: Verdana;
  animation: typing 4s steps(30, end), /* Typewriter animation */
             blink-caret .5s step-end infinite; /* Blinking cursor animation */
}

/* Typewriter animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Blinking cursor animation */


.text-container p {
  font-size: 1.8rem;
  font-weight: 500;
  background-image: linear-gradient(60deg, #E21143, #FFB03A);
  margin-left: 30px;
  text-align: center;
  font-family: Verdana;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  
  animation: typing-p 4s steps(30, end), /* Typewriter animation */
             blink-caret .5s step-end infinite;
}

/* Typewriter animation for p tag */
@keyframes typing-p {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

