body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f0f7ff;
}

.container {
  width: 800px;
  margin: 40px auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Left Section */
.left {
  float: left;
  width: 45%;
  height: 400px;
  background: #1e90ff; /* fallback */
  background: -moz-linear-gradient(top, #2a9df4, #005eff); /* Firefox 3.6+ */
  color: #fff;
  text-align: center;
  padding-top: 120px;
}

.left h1 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  margin-top: 5rem;
}

.left p {
  margin-top: 15px;
  font-size: 14px;
  padding: 0 1rem;
}

/* Right Section */
.right {
  float: right;
  width: 45%;
  height: 400px;
  padding: 0 40px;
  padding-top: 8rem;
  box-sizing: border-box;
}

.right h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.right p {
  color: #555;
  margin: 5px 0 20px;
}

.input-box {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #aaa;
  border-radius: 5px;
  font-size: 14px;
}

.btn {
  width: 100%;
  padding: 12px;
  background: #005eff;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.btn:hover {
  background: #0041c2;
}

.forgot {
  display: block;
  margin-top: 15px;
  text-align: center;
  color: #888;
  text-decoration: none;
  font-size: 13px;
}

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

/* Clear floats */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.animated-header-slideup {
  /* text-align: center; */
  position: relative;

  /* Vendor-prefixed + standard animation */
  -moz-animation: headerSlideUp 0.5s ease-in forwards;
  animation: headerSlideUp 0.5s ease-in forwards;
}

.animated-subheader-slideup {
  /* text-align: center; */
  position: relative;

  /* Vendor-prefixed + standard animation */
  -moz-animation: headerSlideUp 0.5s ease-in;
  animation: headerSlideUp 0.5s ease-in;
}

/* Firefox prefixed keyframes */
@-moz-keyframes headerSlideUp {
  from {
    opacity: 0;
    top: 50px;
  }
  to {
    opacity: 1;
    top: 0;
  }
}

/* Standard keyframes */
@keyframes headerSlideUp {
  from {
    opacity: 0;
    top: 50px;
  }
  to {
    opacity: 1;
    top: 0;
  }
}
