body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
}

.wrapper {
  background: url('../images/images_login.jpg') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  overflow: hidden;
}

.header {
  max-width: 1200px;
  margin: 10px auto 0 auto;
  font-family: 'Poppins', sans-serif;
}

.company-logo {
  max-width: 150px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.system-title-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
}

.system-title {
  display: inline-block;
  font-size: 35px;
  color: white;
  position: relative;
  text-align: center;
  padding-left: 100%;
  animation: scroll-title 20s linear infinite;

  text-shadow: rgb(14, 112, 154) 0px 0px 5px,
    rgb(14, 112, 154) 0px 0px 10px,
    rgba(24, 154, 211, 0.8) 0px 0px 15px,
    rgba(24, 154, 211, 0.8) 0px 0px 20px;
}

@keyframes scroll-title {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  padding: 40px;
}


.form-box {
  display: flex;
  flex-direction: row;
  background-color: rgba(255, 255, 255, 0.95);
  border: 2px solid #0e709a;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(14, 112, 154, 0.3);
  overflow: hidden;
  max-width: 800px;
  width: 100%;
}

.illustration {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 50px;

}

.illustration img {
  width: 100%;
  max-width: 400px;
}

.form-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.form-content h3 {
  font-size: 27px;
  font-weight: 700;
  color: #0e709a;
  margin-bottom: 40px;
}

label {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 20px;
}

input[type="text"] {
  width: 100%;
  border: 2px solid #0e709a;
  border-radius: 12px;
  padding: 12px 10px;
  background-color: transparent;
  box-shadow: inset 0 1px 6px rgba(14, 112, 154, 0.15);
  color: #333;
  font-size: 16px;
}

.text-danger {
  color: red;
  font-size: 14px;
  margin-top: 10px;
}

.button {
  background: linear-gradient(90deg, #0e709a, #189ad3);
  margin-top: 25px;
  color: white;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 18px;
  padding: 10px;
  width: 35%;
  align-self: flex-start;
  box-shadow: 0 1px 0 rgba(24, 154, 211, 0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
  background: linear-gradient(90deg, #0a5e82, #127db8);
  box-shadow: 0 8px 24px rgba(18, 125, 184, 0.8);
}