:root {
    --color-Primario: #ff5555;
    --color-Primario-Titulo: #ff5555;
    --color-Primario-hover: #f78b8b;
    --color-Fondo: #0d0d0d;
    --color-Fondo-hover: #1e1e1e;
    --color-Contraste: #005500;
    
  }
  .pop{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

dialog{
    width: max-content;
    border-radius: 10px;
    width: 40%;
    height: max-content;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0 0 10px #fff;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    animation: fadeIn 0.5s forwards;
    top: 100%;
    left: 50%;
}
@keyframes fadeIn {
    from {
        top: 100%;
        opacity: 0;
    }
    to {
        top: 50%;
        opacity: 1;
    }
}
dialog form{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}   
dialog h1{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffff;
    margin-top: 10px;
}  
.form-group {
    margin-bottom: 15px;
    margin: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #fff;
    
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: var(--color-Primario);
    outline: none;
    box-shadow: 0 0 5px var(--color-Primario);
}

.form-group .UserIniciar {
    width: 100%;
    padding: 10px;
    background-color: var(--color-Primario);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-group .UserIniciar:hover {
    background-color: var(--color-Primario-hover);
}  
#PopUp::backdrop{
        background-color: rgba(0,0, 0, .55);
}
dialog .IconUser{
    width: 100%;
    /* background-color: #f78b8b; */
    /* color: var(--color-Primario); */
    color: #fff;
    text-align: center;
    font-size: 8rem;
}
.password-toggle {
    position: relative;
}

.password-toggle input {
    padding-right: 40px;
}

.password-toggle button {
    position: absolute;
    top: 13;
    right: 0;
    height: 100%;
    padding: 0 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

@media(max-width: 992px){
    dialog{
        width: 80%;
    }
    
    
}
@media (max-width: 460px) {

}