/* style.css - Common custom styles for Akado VTC */

body {
    font-family: 'Poppins', sans-serif;
}

.akado-btn {
    @apply bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-6 rounded-full transition duration-300 shadow;
}

.akado-card {
    @apply bg-white rounded-lg shadow-md hover:shadow-lg transition duration-300;
}

.akado-section-title {
    @apply text-3xl font-bold text-blue-800 mb-8 text-center;
}

.akado-input {
    @apply w-full border border-gray-300 rounded px-3 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500;
}

.akado-hero-overlay {
    @apply absolute inset-0 bg-blue-900/60;
}

.akado-hero-title {
    @apply text-4xl md:text-6xl font-bold mb-6 drop-shadow-lg text-white;
}

.akado-hero-subtitle {
    @apply text-xl mb-8 drop-shadow text-white;
}

.akadovtc-blue {
  background-color: #2986cc !important;
  color: #fff;
}
.akadovtc-border-blue {
  border-color: #2986cc !important;
} 