.center{
    text-align: center;
}

.img-container {
    display: flex;
    justify-content: center;
    padding-bottom: 5px;
}

#video {
    /* border: 1px solid rgba(0, 0, 0, 0.125); */
    /* border-radius: 0.25rem; */
    width: 220px;
    /* height: 190px; */
}
#vid-container{
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    width: 220px;
    min-height: 170px;
}

#photo {
    /* border: 1px solid black; */
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    width: 220px;
    /* height: 190px; */
    /* display: block; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

.hide {
    display: none;
}

.login-container{
    padding-top: 10%;
}

.login-form{
    padding: 5%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
}

.login-form .ForgetPwd{
    color: #0062cc;
    font-weight: 600;
    text-decoration: none;
}

.m-0{
    margin: 0px !important;
}
 .p-t-5{
     padding: 5px 0 0 0 !important;
 }
 .p-10{
     padding: 10px !important;
 }

 .loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 30%;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


  #loading {
    position: fixed;
    /* display: block; */
    width: 100%;
    height: 100%;
    /* top: 0;
    left: 0; */
    text-align: center;
    opacity: 0.7;
    background-color: #000;
    z-index: 99;
  }
