body{
    position: relative;
    background-color: rgba(15,58,93,0.9);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.main{
    background: rgba(255,255,255,0);
}

.login-lateral{
    height: 100vh;
    width: 50%;
    background: rgba(255,255,255,.6)
}

.login{
    width: 90%;
    background: white;
    padding: 10px 10px;
    border-radius: 10px;
}

.img-shadow{
    filter:drop-shadow(
        0 0 10px rgba(0,0,0,.9)
        )
}

/* Dialog responsive */
.dialog-responsive {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.dialog-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  max-height: 65vh;
}

/* Footer de botones */
.dialog-footer {
  padding: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid #ddd;
  background: #fff;
}

@media (max-width: 600px) {
    .login-lateral{
        height: 100vh !important;
        width: 100% !important;
        background: transparent !important;
    }
}