html, body, #root {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.container {
 background-color:#FFFFFF;
 width: 100%;
 height: 100%;
 top: 0pxS;
}

.protipo_info {
  color: maroon;
  font-weight: bold;
  margin-top: 0px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400; 
  z-index: 5;
}

.video-container {
    width: 100%;
    height: 100%;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.login-div {
    width: 300px;  /* Tamanho fixo ou % */
    height: 400px;
    background-color: rgba(255, 255, 255, 0.8); 
    
    /* CENTRALIZAÇÃO COM ABSOLUTE */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    z-index: 5; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;

    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: x-large;
}

.login-div-title {
    top: 0px;
    position: inherit;
}

.login-icon {
    width: 10%;
    position: inherit;
    top: 7%;
    left: 28%;
}

.login-button{
    position: inherit;
    background-color: #FC5426;
    width: 40%;
    height:10%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    display: flex;
    border-radius: 2.0rem;
    bottom: 20%;
}

.login_button_text {
    margin: 0;            
    color: white;             
    font-size: 1.2rem;        
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.login_email {
    margin: 0;            
    color: black;             
    font-size: 0.8rem;        
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    align-self: start;
    justify-self: start;
    margin-left: 11%;
}

.login-input {
    width: 70%;               
    height: 45px;
    margin: 15px;
    margin-top: 5px;           
    padding: 0 15px;          
    
    background-color: rgba(255, 255, 255, 0.2); 
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    
    /* TEXTO */
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333;             
    outline: none;           
    transition: 0.3s;
}

.login-input:focus {
    background-color: rgba(255, 255, 255, 0.4);
    border-color: #FC5426;    
}

.login-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.version_text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #333;             
    outline: none;           
    bottom: 5%;
    position: inherit;
}

.version_bussines{
    font-family: 'Poppins', sans-serif;
    font-size: 0.6rem;
    color: #333;             
    outline: none;           
    bottom: 2%;
    position: inherit;
}

.name_label {
    margin: 0;
    z-index: 20;
    bottom: 2%;
    right: 2%;
    position: absolute;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #333;             
    outline: none;   
}

.mfa-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin: 10px 20px 15px 20px;
  line-height: 1.5;
}