body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}
input {
    max-width: 240px;
}
.user_card {
    max-width: 450px;
    background: rgba(245, 245, 245, 0.5);
    backdrop-filter: blur(15px) !important;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 20px;
}
.btn-info {
    background-color: rgba(23, 162, 184, 0.7);
    min-width: 170px;
}
.brand_logo {
    max-width: 100%;
    width: 360px;
}
.brand_logo_container {
    margin: 30px 2%;
}
#loginForm {
    padding: 12px 0px;
    max-width: 90%;
    margin: auto;
}
.form_container {
    margin-top: 30px;
}
.login_btn {
    width: 100%;
    background: #00b6d5 !important;
    color: white !important;
    animation: slide-up 0.3s ease;
}
.login_btn:focus {
    box-shadow: none !important;
    outline: 0px !important;
}
.login_container {
    padding: 0 2rem;
}
.input-group-text {
    background: #00b6d5 !important;
    color: white !important;
    border: 0 !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
}

.msgBox {
    border-radius: 25px !important;
    padding: .75rem 1.25rem !important;
    text-align: center;
    font-family: sans-serif;
    height: max-content;
    position: fixed !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: none;
    top: 5%;
    min-width: 280px;
}
.msgBoxContent {
    display: inline-block;
    vertical-align: middle;
    color: #050505;
}
.msgBoxBtn {
    top: 50%;
    transform: translateY(-50%);
    display: inline-block; 
    position: fixed; 
    right: 5px;
    width: 10%;
    max-width: 55px;
    cursor: pointer;
    color: #050505;
    user-select: none;
}