body {
  background: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 390px;
  margin: 32px auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 36px 24px 20px 24px;
  min-height: 600px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.login-icon {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 8px;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.05;
}

.subtitle {
  font-size: 1rem;
  color: #838383;
  margin-bottom: 18px;
  font-weight: 400;
}

.desc {
  font-size: 1.1rem;
  margin-bottom: 18px;
  font-weight: 500;
  color: #222;
}

.form-label {
  font-size: 1.04rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: #222;
  display: block;
}

.form-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1em;
  background: #f9fafb;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.form-input:focus {
  border: 1.5px solid #4285f4;
  outline: none;
  background: #fff;
}

.btn-login {
  width: 100%;
  max-width: 260px;
  display: block;
  margin: 0 auto;
  padding: 12px 0;
  background: linear-gradient(90deg, #6366f1 0%, #60a5fa 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.08em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-login:hover {
  background: linear-gradient(90deg, #4f46e5 0%, #2563eb 100%);
}

.register-link {
  margin-top: 12px;
  font-size: 1.09rem;
  color: #222;
  font-weight: 500;
}

/* Responsive for smaller screens */
@media (max-width: 1200px) {
  .container {
    max-width: 100vw;
    min-height: 100vh;
    /* border-radius: 0; */
    /* box-shadow: none; */
    padding: 30px 30px 20px 30px;
    margin:auto;
  }
}
/* Styling tombol floating */
.whatsapp-float {
    position: fixed;
    bottom: 3%;
    right: 5%;
    background-color: #ffffff;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

/* Efek hover */
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Styling ikon */
.whatsapp-float img {
    width: 50px;
    height: 50px;
}