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;
    background-color: #f8f9fa;
}

.form-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 2rem;
}

.form-header {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.form-header::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 25%;
    width: 50%;
    height: 2px;
    background-color: #0d6efd;
}
.form-floating > label {
    padding-left: 2.5rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #6c757d;
    z-index: 5;
}

.btn-primary {
    padding: 0.6rem 2rem;
    /*border-radius: 50px;*/
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 0.125rem 0.25rem rgba(13, 110, 253, 0.5);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 0.75rem rgba(13, 110, 253, 0.4);
}

.btn-secondary {
    padding: 0.6rem 2rem;
    /*border-radius: 50px;*/
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 0.125rem 0.25rem #6c757d;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 0.75rem #6c757d;
}

.btn-warning {
    padding: 0.6rem 2rem;
    /*border-radius: 50px;*/
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 0.125rem 0.25rem #f0ad4e;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 0.75rem #f0ad4e;
}

.btn-danger {
    padding: 0.6rem 2rem;
    /*border-radius: 50px;*/
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 0.125rem 0.25rem #d9534f;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 0.75rem #d9534f;
}

.btn-success {
    padding: 0.6rem 2rem;
    /*border-radius: 50px;*/
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 0.125rem 0.25rem #5cb85c;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 0.75rem #5cb85c;
}

.step-indicator {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-right: 0.5rem;
}
.icon-hover-primary, .icon-hover-success, .icon-hover-danger, .icon-hover-warning{
    padding: 3px;
    border-radius: 3px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-hover-primary:hover {
    background-color: var(--bs-primary);
    color: white !important;
}

.icon-hover-primary:hover i {
    color: white !important;
}

.icon-hover-success:hover {
    background-color: var(--bs-success);
    color: white !important;
}

.icon-hover-success:hover i {
    color: white !important;
}

.icon-hover-danger:hover {
    background-color: var(--bs-danger);
    color: white !important;
}

.icon-hover-danger:hover i {
    color: white !important;
}

.icon-hover-warning:hover {
    background-color: var(--bs-warning);
    color: white !important;
}

.icon-hover-warning:hover i {
    color: white !important;
}

.nav-pills .nav-link:not(.active) {
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
    background-color: transparent;
}

.nav-pills .nav-link:not(.active):hover {
    background-color: var(--bs-primary);
    color: white;
}

footer {
    display: block;
    text-align: center;
}