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;
}

/* for Tab control */
div.login-logout-tab div.card.header {
    padding: 0px 0px 12px 0px;
}

div.login-logout-tab li.nav-tabs {
    margin: 0px 0px -12px 0px;
}

div.login-logout-tab li.nav-item {
    width: 50%;
}

div.login-logout-tab a.nav-link {
    font-size: 25px;
    color: #495057;
    text-align: center;
}



/*For secuss message*/
.popup-overlay {
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    z-index: 999;
}

.popup-box {
    background-color: white;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
}

.popup-header {
    background-color: #7bc043;
    padding: 20px;
    color: white;
}

.popup-icon {
    font-size: 30px;
    margin-bottom: 5px;
}

.popup-box p {
    padding: 20px;
    color: #333;
    font-size: 14px;
}

.popup-box button {
    background-color: #7bc043;
    border: none;
    padding: 10px 20px;
    margin-bottom: 20px;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

    .popup-box button:hover {
        background-color: #6aa634;
    }


