/* Base styles */
@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Custom styles */
.bg-primary {
  background: #161841;
}

.bg-gradient {
  background: linear-gradient(135deg, #161841 0%, #4c76f0 100%);
}

.text-primary {
  color: #161841;
}

.text-secondary {
  color: #8e8f91;
}

.text-white {
  color: #fefefe;
}

.text-accent {
  color: #00ccff;
}

.bg-accent {
  background: #00ccff;
}

.border-accent {
  border-color: #4c76f0;
}