html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


.text-gradient {
    background: linear-gradient(90deg, #007bff, #00c853);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.underline-animate {
    position: relative;
    display: inline-block;
}

    .underline-animate:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        bottom: -5px;
        left: 0;
        background: linear-gradient(90deg, #007bff, #00c853);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        transition: transform 0.3s ease;
    }

    .underline-animate:hover:after {
        transform: scaleX(1);
    }

.bg-primary-opacity-10 {
    background-color: rgba(0, 123, 255, 0.05);
}

.bg-danger-opacity-10 {
    background-color: rgba(220, 53, 69, 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}
