* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: sans-serif;
    background: #f1f1f1;
  }
  
  .login-box {  
    width: 390px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #353535;
    /*background: linear-gradient(135deg, rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);    
    -webkit-backdrop-filter: blur(10px);*/
    background: rgba(255, 255, 255, 0.9);
    padding: 14px 30px 14px 30px;    
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  
  .login-box h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .login-box img {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .login-box .user-box {
    position: relative;
  }
  
  .login-box .user-box-password input {
    width: 90% !important;
    padding: 10px 0;
    font-size: 16px;
    color: #353535;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #353535;
    outline: none;
    background: transparent;
  }
  
  .login-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #353535;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #353535;
    outline: none;
    background: transparent;
  }
  
  .login-box .user-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #353535;
    pointer-events: none;
    transition: 0.5s;
  }
  
  .login-box .user-box input:focus ~ label,
  .login-box .user-box input:not(:placeholder-shown) ~ label {
  	top: -20px;
  	left: 0;
  	color: #353535;
  	font-size: 12px;
  }

  .login-box .user-box input:not(:focus):not(:placeholder-shown) ~ label {
  	top: -20px;
  	left: 0;
  	color: #353535;
  	font-size: 12px;
  }

  
  .login-box .btn_entrar {
    display: flex;
  	justify-content: center;
  	align-items: center;
  	text-decoration: none;
    background: #636f61;
    color: #353535;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
    border: none;
    text-decoration: none;
    transition: 0.5s;
    width: 100%;
  }
  
  .btn_apagar {
    display: flex;
  	justify-content: center;
  	align-items: center;
  	text-decoration: none;
    background: #C82333;
    color: #353535;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
    border: none;
    text-decoration: none;
    transition: 0.5s;
    width: 100%;
  }
  
  .login-box .esquecer_senha {
  	color:#353535;
    display: flex;
  	justify-content: center;
  	align-items: center;      
    transition: 0.5s;
  }
  
  .login-box .btn_entrar:hover {
    background: #353535;
    color: #222;
  }
  
  .btn_apagar:hover {
    background: #353535;
    color: #222;
  }
  
  .login-box .btn_entrar span {
	display: inline-block;	
	margin-right: 5px;	
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    animation: pulse 2s infinite;
    opacity: 0;
  }
  
  .login-box .btn_entrar span:nth-child(1) {
    top: 0;
    left: 100%;
  }
  
  .login-box .btn_entrar span:nth-child(2) {
    top: 100%;
    right: 0;
  }
  
  .input-error {
  	animation: shake 0.5s;
  	border: 1px solid red;
  }

  @keyframes shake {
  	0% { transform: translateX(0); }
  	25% { transform: translateX(-5px); }
  	50% { transform: translateX(5px); }
  	75% { transform: translateX(-5px); }
  	100% { transform: translateX(0); }
  }
  
  .error-message {
  	color: red;
  	font-size: 12px;
  	margin-top: 5px;
  } 
  
  .success-message {
  	color: green;
  	font-size: 12px;
  	margin-top: 5px;
  }  
  
  .password-container {
       position: relative;
       display: inline-block;
   }   
   
   .toggle-password_1 {
       position: absolute;
       top: 36%;
       right: 5px;
       transform: translateY(-50%);
       cursor: pointer;
       z-index:10;
	   border:none;
	   background:transparent;
	   outline:none;
   }
   
   .toggle-password_2 {
       position: absolute;
       top: 52%;
       right: 5px;
       transform: translateY(-50%);
       cursor: pointer;
       z-index:10;
	   border:none;
	   background:transparent;
	   outline:none;
   }
  
  
