/* 
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
 * See LICENSE in the project root for license information.
 */

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

#app-body {
    padding: 10px;
}

#ulList {
    list-style-type: none;
    padding-inline-start: 0px;
    margin-top: 10px;
}

#ulList > li {
    margin-bottom: 10px;
}

#ulList > li > * {
    margin-bottom: 4px;
}

#companyName {
    width: 60%;
    height: 30px;
    /* border: none; */
}

#visitorName {
    margin-left: 4px;
    margin-right: 2px;
    padding-left: 1px;
    width: 25%;
    height: 30px;
    /* border: none; */
}

#visitorEmail {
    width: 92%;
    height: 30px;
    /* border: none; */
}

#divVisitorInfo > input {
    margin-bottom: 15px;
}

#loginSection, #mfaSection {
    text-align: center;
    margin-top: 30px;
}

#loginSection input, button {
    margin: 5px;
}

#mfaSection input, button {
    margin: 5px;
}

#email, #password, #code {
    height: 30px;
    width: 180px;
}

#logoutSection {
    text-align: center;
    margin-top: 30px;
    display: none;
}

#organizationSelect {
    margin-bottom: 15px;
}

#organizations {
    width: 80%;
    padding-top: 9px;
    padding-bottom: 9px;
}

#mailMessageToVisitor {
    width: 92%;
    height: 100px;
}

#messageToVisitor {
    width: 92%;
    height: 100px;
    /* border: none; */
}

#loader-bg {
    display: none;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10;
}

#loader-bg img {
    height: 64px;
    margin: auto;
    z-index: 10;
}

@keyframes anim_sc {
    50% {
        transform: scale(1.1, 1.1);
    }
}
  
.complete-animation {
    animation-name: anim_sc;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    animation-duration: 0.3s;
}

.mb-0 {
    margin-bottom: 0;
}

/*
 ul {
     margin: 0;
     padding: 0;
 }
 
 .ms-welcome__header {
    padding: 20px;
    padding-bottom: 30px;
    padding-top: 100px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
 }

 .ms-welcome__main {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex: 1 0 0;
    flex: 1 0 0;
    padding: 10px 20px;
 }
 
 .ms-welcome__main > h2 {
     width: 100%;
     text-align: center;
 }
 
 .ms-welcome__features {
     list-style-type: none;
     margin-top: 20px;
 }
 
 .ms-welcome__features.ms-List .ms-ListItem {
     padding-bottom: 20px;
     display: -webkit-flex;
     display: flex;
 }
 
 .ms-welcome__features.ms-List .ms-ListItem > .ms-Icon {
     margin-right: 10px;
 }
 
 .ms-welcome__action.ms-Button--hero {
     margin-top: 30px;
 }
 
.ms-Button.ms-Button--hero .ms-Button-label {
  color: #0078d7;
}

.ms-Button.ms-Button--hero:hover .ms-Button-label,
.ms-Button.ms-Button--hero:focus .ms-Button-label{
  color: #005a9e;
  cursor: pointer;
}

b {
    font-weight: bold;
}
*/