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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.captcha-container {
    display: flex;
    align-items: center; /* Vertically centers the image and input */
    gap: 15px; /* Adds consistent space between them */
    margin-bottom: 20px;
}

.captcha-img {
    height: 50px; /* Match your canvas height */
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* start Style for Tab Header */
#profileTabs .nav-link {
    border: none;
    color: rgba(255, 255, 255, 0.7); /* Subtle white for inactive */
    padding: 1rem 1.5rem;
    transition: all 0.2s ease-in-out;
}

    #profileTabs .nav-link.active {
        background-color: #ffffff !important;
        color: #0d6efd !important; /* Brand Blue */
        font-weight: 600;
        border-radius: 8px 8px 0 0;
    }

/* Icon Color Uniformity */
.form-label i {
    color: #0d6efd; /* Brand Blue for all field icons */
    font-size: 1.1rem;
}

/* Subtle Card Enhancement */
.card {
    border-radius: 12px !important;
    overflow: hidden;
}

.card-header {
    border-bottom: none !important;
}
/* end Style for Tab Header */