html,
body {
  height: 100%;
}

body {
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
}

.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
}

.logo{
    width: 100%;
    min-height: 225px;
    
}

.layout{
  background-image: url('../img/logo.jpg');
  background-size: cover;
  background-position: center;
}

.card{
  margin-top: 25px;
  padding: 50px;
}

.p-skeleton{
  background-color: aliceblue;
}

.form > div > input.form-control {
  border-radius: 0; /* Restablece el border-radius a 0 para todos los elementos */
}

.form > div:first-child > input.form-control {
  border-radius: 5px 5px 0 0; /* Restablece el border-radius a 0 para todos los elementos */
}

.form > div:nth-last-child(2) > input.form-control {
  border-radius: 0 0 5px 5px; /* Restablece el border-radius a 0 para todos los elementos */
}


.p-toast{
  z-index: 1000;
}

.p-inputtext, .p-dropdown, .p-calendar, .p-password{
  width: 100%;
}

.p-inputwrapper-focus + label {
  display: none;
}

.form-total{
  margin-top: 50px;
}

.form-total label{
  font-weight: bold;
  margin-right: 10px;
}

.form-total span{
  margin-right: 10px;
}

.p-invalid{
  border-color: #dc3545;
  background-color: #dc3545;
}