* {
  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;
  font-family: 'Poppins', sans-serif;
  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;
}

.login {
  width: 400px;
  padding: 40px;
}

form {
  width: 100%;
}

input {
  width: 100%;
  height: 56px;
  padding: 12px 16px;
  margin: 10px 0;
  border-radius: 4px;
  border: 1px solid gray;
}

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

p {
  text-align: center;
  margin: 1opx;
}

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

.right img {
  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)
  );
}

input {
  width: 100%;
  margin: 2px;
  border: none;
  outline: none;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid gray;
}

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;
}

.cek {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-top: 10px;
}

.checkbox-container {
  display: inline-block;
  margin-right: 5px;
}

.checkbox-input {
  margin: 0;
}

.forgot,
.create {
  margin-top: 10px;
}

.inline-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.inline-links a {
  color: #283978;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.8em;
  text-transform: uppercase;
}

.inline-links a:hover {
  text-decoration: underline;
}

.inline-links span {
  color: #283978;
  display: inline-block;
  margin: 0 5px;
  height: 1em;
  border-left: solid #283978;
}

/* Alert styles */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #fff;
  background-color: #f44336;
  border-color: #f44336;
}
