* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

h1 {
  text-align: top;
  margin: 8px;
  padding: 10;
  top: 10px;
}

.navbar {
  background-color: #f5f5f5;
  box-shadow: 0 0 2rem 0 rgba(33, 37, 41, 0.1);
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  width: 100px;
  margin-right: 15px;
}

.navbar-brand h1 {
  color: #283978;
  font-size: 2em;
  font-weight: bold;
}

.judul {
  color: #283978;
  background: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #dbeafe;
}

.container {
  width: 1200px;
  height: 600px;
  margin-top: 50px;
  gap: 0px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.forget {
  width: 400px;
}

form {
  width: 80%;
  margin: 40px auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-group label {
  margin-bottom: 5px;
  font-size: 1em;
  color: #283978;
}

input {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  margin-top: 5px;
  border-radius: 4px;
  border: 1px solid gray;
}

h2 {
  margin-bottom: 20px;
  font-size: 2em;
  color: #283978;
  font-weight: bolder;
}

button {
  border: none;
  outline: none;
  padding: 12px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 5px;
  background: #283978;
  color: #fff;
}

button:hover {
  background: #1a2556;
}

.back-to-login {
  text-align: center;
  margin-top: 15px;
}

.back-to-login a {
  color: #283978;
  text-decoration: none;
  font-size: 0.9em;
}

.back-to-login a:hover {
  text-decoration: underline;
}

.right {
  flex: 1;
  width: 100%;
  height: 100%;
}

.right img {
  width: 100%;
  height: 100%;
  border-radius: 10px 0px 0px 0px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  object-fit: cover;
}

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

.image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
}
