body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow: hidden;
}

.container {
  display: flex;
  width: 100%;
  height: 100vh;
}

.left-side {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.image-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  opacity: 0;
  animation: fadeInBottom 1s ease-out forwards;
}

.overlay-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.image-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.right-side {
  width: 450px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.login-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.logo-container {
  max-width: 80%;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInImage 1.5s ease-out forwards;
}

.logo-container img {
  width: 100%;
  height: auto;
}

.form-container {
  width: 100%;
  max-width: 350px;
  background-color: #0002c6;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInForm 1s ease-out 0.5s forwards;
}

.form-container h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #0002c6;
  font-size: 1.2rem;
}

.input-group input {
  width: 84%;
  padding: 12px 12px 12px 40px;
  border: 2px solid #fff;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

input[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #38bdf8;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #0ea5e9;
}

.message {
  text-align: center;
  margin-top: 1rem;
  color: #ff3333;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  border-radius: 5px;
  font-weight: bold;
  animation: fadeInBottom 0.5s ease-out;
}

.footer {
  background-color: #0203c5;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  animation: surgindo 2.5s ease-out forwards;
}

@keyframes fadeInForm {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translate(-50%, -30%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes surgindo {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


.overlay-content,
.form-container h2,
.form-actions,
.footer {
  outline: none !important;
  caret-color: transparent;
}