.bg-primary {
    background-color: #068831; /* primary color */
}
.bg-secondary {
    background-color: #0c4e57; /* secondary color */
}
.hover-primary:hover {
    background-color: #097e2c; /* Hover color */
    transition: .3s ;
}
.text-highlight {
    color:#0A6847; /* text highlight color */
}

.font-roboto {
    font-family: 'Roboto', sans-serif;
}

.input-ring {
    border-color: #0A6847; 
    box-shadow: 0 0 0 1px #0A6847;
}
.input-ring:focus {
    box-shadow: 0 0 0 1.8px #0A6847;
}
.error-toast {
    color: #e53e3e; 
}

.transition-transform {
    transition: transform 0.2s, box-shadow, background-color;
}
.hover-transform {
    transform: translateY(-5px);
}


.card-grid-3 {
    width: 100%;
    padding-top: 1.25rem; 
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 5px; 
}
.card-grid-2 {
    width: 100%;
    padding-top: 1.25rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 5px; 
}

@media (min-width: 640px) { 
    .card-grid-3 {
        width: 600px;
        grid-template-columns: repeat(3, 1fr); 
        gap: 5px; 
    }
    .card-grid-2 {
        width: 400px;
        grid-template-columns: repeat(2, 1fr); 
        gap: 5px; 
    }
}

.card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap:5px;
    padding: 1.5rem;
    border-radius: 0.375rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    color: white;
    background-color: #0A6847;
}

.card:hover {
    transform: scale(1.05); 
}
svg {
    width: 100px; 
    height: auto;
}

input{
    border: none !important;

}


.input-content {
    margin-top: 1rem; 
    height: 58px;
    border-radius: 0.375rem;
    background-color: #e2e8f0; 
    background-clip: padding-box;
    padding: 1rem 0.75rem; 
    font-size: 1rem; 
    font-family: 'Roboto', sans-serif;
    font-weight: 500; 
    line-height: 1.5; 
    color: #4a5568; 
    width: 100%; 
}

.common-button{
    background-color: #059212;
}

.button-hover:hover {
    background-color: var(--hover-bg-color);
    transform: translateY(-2px);
}
.button {
    background-color: var(--primary-color);
    padding: 0.875em 1em;
    border-radius: 0.375rem;
    color: white;
    width: 100%;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.button-hover:hover {
    background-color: var(--hover-bg-color);
}

.button-disabled {
    background-color: #90948e;
    cursor: not-allowed;
}

.error-toast {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    margin-top: 1px;
    animation: fadeIn 1s ease-in-out;
    font-size: 14px;
    border: 1px solid #d61427;
   
  }
  @keyframes fadeLeft {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  #submitBtn {
    background-color: #0A6847;
}

#submitBtn:disabled {
    background-color: #A1A1A1; 
    opacity: 0.5; 
    cursor: not-allowed; 
}