/* BACKGROUND */
body {
  margin: 0;
  background: linear-gradient(135deg, #99ddff, #0d6efd);
}

/* CARD */
.login-box {
  max-width: 400px;
  width: 100%;
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* INPUT */
.form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
}

.form-control:focus {
  box-shadow: none;
  border-color: #0d6efd;
}

/* BUTTON */
.btn-primary-custom {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
    border-radius: 8px;
    border: none;
    transition: 0.2s;
}

.btn-primary-custom:hover {
    color: white;
    font-weight: bold;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

/* LINK */
.auth-link {
  color: #0d6efd;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}
