/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 17 de jun. de 2024, 10:17:36
    Author     : bruno
*/

/* Adicione aqui seu CSS para combinar com o estilo do www.diquimica.com.br */
  body {
    font-family: Arial, sans-serif;
  }
  .login-container {
    width: 300px;
    margin: 100px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  }
  .login-container input[type="text"], input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
  }
  .login-container input[type="submit"] {
    width: calc(100% - 20px);
    padding: 10px;
    border: none;
    border-radius: 3px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
  }
  #wap {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #155c0a;  
    padding: 10px 13px;
    border-radius: 50%;
    transition: 0.4s;

}
#wap i{
    color: white;
    font-size:25px;
}
#wap:hover {
  border-radius:5px;
}
#wap a{
    text-decoration:none;
     color: white;
}
#wap span {
    display: none;
}

#wap:hover span {
    display: inline;
}