/* General Body Styling */
body {
  font-family: 'Inter', sans-serif;
  background-color: #e8edf1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Remove rounding from DaisyUI components */
.btn {
  border-radius: 0 !important;
}

.card {
  border-radius: 0 !important;
}

.input {
  border-radius: 0 !important;
}

/* Custom Claranet Red Background */
.bg-claranet-red {
  background-color: #e01c20;
}

/* Login Card Specific Styles */
.login-card {
  max-width: 400px;
  width: 100%;
}

/* Logo Section */
.logo-section {
  background-color: #2d3a42;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card Body Background Color */
.card-body {
  background-color: #f5f7f9;
}

/* Card Title Color */
.card-title {
  color: #2c3e50;
}
