/* General Reset */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

.login-container {
  background: linear-gradient(270deg, #64CCC5 50%, #DAFFFB 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.login-box {
  text-align: center;
  background: linear-gradient(270deg, #DAFFFB 50%, #64CCC5 50%);
  padding: 30px 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h2 {
  margin-bottom: 25px;
  font-size: 1.5rem;
  color: #333;
}

.input-group {
  margin-bottom: 15px;
  text-align: left;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #555;
}

.password-toggle {
  position: relative;
}
.password-toggle i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
}

.input-group input {
 width: 98%;
 padding: 10px;
 border-radius: 5px;
 border: 1px solid #ccc;
 font-size: 14px;
}

input:focus {
  border-color: #6a11cb;
  outline: none;
}

button {
  width: 100%;
  margin-bottom: 8px;
  padding: 0.75rem;
  background: linear-gradient(2000deg, #1EAE98 50%, #233E8B 50%);
  color: #ffff;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 2s ease;
}

button:hover {
  background: linear-gradient(150deg, #233E8B 50%, #1EAE98 50%);
}

.message {
  margin: 15px 0 0;
  color: #333; /* Warna teks pesan lebih cerah */
  font-size: 16px;
}

.message a {
  color: #6a11cb;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out; /* Animasi perubahan warna */
}

.message a:hover {
  color: #333; /* Warna coral saat dihover */
  text-decoration: underline;
}                                      

@media (max-width: 768px) {
 
  
}