body {
  background: linear-gradient(135deg, #dee0e6 0%, #d6cce0 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.login-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.login-header {
  /* background: linear-gradient(45deg, #667eea, #764ba2); */
  background: linear-gradient(195deg, #EC407A 0%, #D81B60 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}
.login-body {
  padding: 2rem;
}
.form-control {
  border-radius: 10px;
  border: 2px solid #e3e6f0;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}
.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
.btn-login {
  /* background: linear-gradient(45deg, #667eea, #764ba2); */
  background: linear-gradient(195deg, #EC407A 0%, #D81B60 100%);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  width: 100%;
  color: white;
}
.btn-login:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4); */
  color: white;
}
.btn-register {
  background: transparent;
  /* border: 2px solid #667eea; */
  border: 2px solid #EC407A;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  width: 100%;
  /* color: #667eea; */
  color: #EC407A;
  transition: all 0.3s ease;
}
.btn-register:hover {
  /* background: #667eea; */
  background: #EC407A;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #EC407A;
}
.login-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.divider {
  margin: 1.5rem 0;
  text-align: center;
  position: relative;
}
.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #dee2e6;
}
.divider span {
  background: white;
  padding: 0 1rem;
  color: #6c757d;
}
