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;
}

.profile-img {
    width: 256px;
    height: 256px;
    border-radius: 6%;
}

.footer_docked {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

.profile-box{
    padding: 32px;
}

.bog-color {
    color: #FF6B17;
}

/* login page */

.login-container {
    background-color: #2b629a;
    border-radius: 36px;
    min-height: 400px;
}

.login-left {
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    height: 50vh; /* Full viewport height */    
}

.login-left-title-large {
    color: #ffffff;
    font-size: 64px;
    font-weight: bold;
}

.login-left-title-medium {
    color: #ffffff;
    font-size: 22px;
}

.login-right-box {
    background-color: #ffffff;
    border-radius: 36px;
    margin: 32px;
    height: 50vh;
}

.login-right-title-large {
    color: #2b629a;
    font-size: 64px;
    font-weight: bold;
}

.login-right-title-small {
    color: #2b629a;
    font-size: 14px;    
}