body, html{
        height:100%;
        overflow:hidden;
        background: linear-gradient(135deg, black, #1A1B43);
        position:relative
    }

.minor-reglog-container{
    z-index:1;
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);


    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items:center;
    height: auto;
    width: 500px;
    padding-top: 25px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.141), rgba(255, 255, 255, 0.061));
    border: 1px solid white;
    color:white;
    border-radius:40px;
}

form div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    
}

form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
img{
    width:1500px;
    height:auto;
    position: absolute;
    right:-20%;
    bottom:-40%;
    opacity: 0.2;
    z-index: 0;
}


.register-button{
    all: unset;
    cursor: pointer;
    width: 200px;
    height:30px;
    border: 1px solid white;
    background-color: none;
    text-align: center;
    align-self: center;
    transition: all 0.3s ease; 
}
.register-button:hover{
    background-color: white;
    color:black;
}
input{
    background-color: #1A1B43;
    border: 1px solid white;
    width: 300px;
    height:30px;
    color:white;
}

form div{
    display: flex;
    flex-direction: column;
    align-items: start;
}


/* Para telas menores que 768px (tablet e celular) */
@media (max-width: 768px) {
    .minor-reglog-container{
        width:80%;
        padding-bottom:20px;

    }
    input{
        width:200px;
    }
}

/* Para celulares menores que 480px */
@media (max-width: 425px) {

} 


.errorlist {
  color: red;
  padding: 10px;
  border-radius: 4px;
  list-style-type: none;
  font-size:10px;
  margin:0;
  /* position:absolute; */
}

.errorlist li {
  margin-left: 0;
}