body {
  background: linear-gradient(to right, #fff5e6, #ffecd2);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.row {
  margin: inherit;
}

.login-container {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 500px;
  width: 100%;
}

.login-container img {
  width: 50px;
  margin-bottom: 20px;
}

.form-control {
  border-radius: 20px;
  padding: 20px;
}

.btn {
  background-color: #ff6600;
  color: #ffe6e6 !important;
  border-radius: 20px;
  border-color: #ff5500 !important;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #ff5500 !important;
  color: #ffe6e6 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.btn:active {
  background-color: #cc4400 !important;
  color: #ffe6e6 !important;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(255, 102, 0, 0.2);
}

.btn:disabled {
  background-color: #ffaa80 !important;
  color: #ffe6e6 !important;
  cursor: not-allowed;
  transform: none;
  opacity: 0.6;
}
