body {
  	--sb-track-color: #d6d4d4;
  	--sb-thumb-color: #797979;
  	--sb-size: 7px;
  	--mailissa-blue-color: #4D648D;
	--mailissa-light-blue-color: #D0E1F9;
	--mailissa-axontic-blue-color: #283655;
	--mailissa-gray-background: #F3F5F9;
	--mailissa-blue-800: #555B86;
}

body::-webkit-scrollbar {
  width: var(--sb-size)
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 8px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 8px;
  
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  padding-bottom: 100px;
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  height: 100%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.modal-skip {
  color: white;
  float: right;
}

.modal-skip:hover,
.modal-skip:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 8px;
  background-color: #00BAFF;
  color: white;
}

.modal-body {
	padding: 2px 16px;
}

.modal-footer {
  	padding: 6px 8px;
  	color: white;
 	bottom: 0px;
  	position: absolute;
	right: 0px;
}

button.nextButton {
	border-radius: 3px;
	font-size: 18px;
	padding: 0px 10px;
}

.modal-header-content
{
	font-size: 22px;
}

.modal-body-content
{
	font-size: 16px;
	display: block;
}

.modal-body-header
{
	font-size: 20px;
	padding: 10%;
	font-weight: 800;
	display: block;
}

.modal-body
{
	padding: 10px;
	top: 20%;
	text-align: center;
}

#loginForm {
	width: 100%;
}

.login-box-content {
	background: var(--mailissa-gray-background);
	border-radius: 17px;
	display: flex;
	padding: 20px;
	flex-direction: column;
	gap: 10px;
	flex-shrink: 0;
}

.loginLoadingCircle {
	text-align: center;
}


.login-protocol {
	max-width: 289px;
	color: black;
	display: none;
}

.remember-me-div {
	display: flex;
	align-items: center;
}

.remember-me-div label {
	margin-left: 8px;
	margin-bottom: 0px;
}

.remember-me-div input[type="checkbox"] {
	margin: 0px;
}

.info-container
{
    width: 100%;
    padding: 5px;
    background: #E6EAF1;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#infoMessage
{
	text-wrap: pretty;
}

.error-icon
{
	color: #EF4565;
	font-size: 32px;
}

.icon
{
    width: 12px;
    height: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 12px;
    color: #434865;
}

.message
{
    flex: 1;
    font-size: 11px;
    color: #434865;
    text-align: left;
}

.error-message
{
	color: #434865;
	font-size: 10px;
	font-weight: 400; 
	line-height: 20px;
	letter-spacing: 0.10px;
	word-wrap: break-word
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}