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;
}

/* Used by Register.cshtml */
.radio-group {
    display: flex;
    gap: 1rem; /* Adjust spacing between radio buttons as needed */
    flex-wrap: wrap; /* Allows wrapping if there is not enough space */
}

.radio-item {
    display: flex;
    align-items: center;
}

.radio-item input[type="radio"] {
    margin-right: 0.5rem; /* Adjust spacing between radio button and label */
}

/* Used by Login.cshtml */
.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container input {
    width: 100%;
    padding-right: 2.5rem; /* Adjust this value based on icon size */
}

.password-container .toggle-password {
    position: absolute;
    top: 50%;
    right: 0.5rem; /* Adjust this value to position the icon as needed */
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.2rem;
    color: #6c757d; /* Adjust color as needed */
}
