﻿.form-control:focus,
.form-select:focus {
    border-color: #6b8e3d;
    box-shadow: 0 0 0 0.25rem rgba(107, 142, 61, 0.25);
}

.btn-success {
    background-color: #6b8e3d;
    border-color: #6b8e3d;
}

    .btn-success:hover {
        background-color: #5a7a32;
        border-color: #5a7a32;
    }

.card {
    border-radius: 15px;
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, #6b8e3d 0%, #5a7a32 100%);
}

.form-label {
    color: #2d4019;
}

h4.text-success {
    color: #5a7a32 !important;
    border-bottom: 2px solid #6b8e3d;
    padding-bottom: 10px;
}

.animate__animated {
    animation-duration: 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeIn {
    animation-name: fadeIn;
}
