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,
body {
    height: 100%;
    margin: 0;
}

#passwordRulesContainer {
    text-align: left;
    margin: 30px 10px;
    width: 700px;
    word-wrap: break-word;
}

#passwordRulesContainer ul {
    margin-left: 20px
}

#passwordRulesContainer ul li {
    padding: 4px 0px;
}

.msButton {
    background-color: #12a0e0;
    border-radius: 10px;
    color: #fff;
    height: 50px;
    font-size: 1.3em;
    font-weight: bold;
    border: 1px #12a0e0 solid;
    min-width: 200px;
}

.msButton:hover {
    background-color: #3245b3;
    transition: all 0.3s ease;
}

input[type="password"]::-ms-reveal {
    display: none;
}

input[type="password"]::-webkit-textfield-decoration-container {
    display: none;
}

.password-container {
    position: relative;
    display: inline-block;
}

.reset-password-container {
    display: flex;
    align-items: center;
}

.top-20px {
    top: 20px;
}

.top-8px {
    top: 8px;
}

.right-10px {
    right: 10px;
}

.cursor-pointer {
    cursor: pointer;
}