html {
font-size: 14px;
}
.hidden-before-load {
display: none !important;
visibility: hidden !important;
}
@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;
}
.custom-btn {
background: linear-gradient(135deg, #00b09b, #96c93d);
color: white;
border: none;
padding: 12px 24px;
border-radius: 10px;
font-size: 18px;
transition: background 0.3s ease;
}
.custom-btn:hover {
background: linear-gradient(135deg, #007d71, #7ba328);
}