
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');

body{
    margin:0;
    box-sizing: border-box;
    overscroll-behavior:none;

}
#main {
    width: 100vw;
    max-height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;

}

.form-container {
    color: white;
    padding: 1.5rem;
    position: absolute;
    top:60%;
    left:75%;
    transform: translate(-50%,-50%);
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00c6ff;
    backdrop-filter: blur(10px);
}

.editor-header {
    color: white;
    /* font-family: 'Orbitron', sans-serif; */
    letter-spacing: 2px;
}

.color-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: white;
    letter-spacing: 2px;
}

.color-form div {
    display: flex;
    width: fit-content;
    margin-bottom: 10px;
}

.color-form > div > label {
    margin-right: 10px;
    /* font-family: 'Orbitron', sans-serif; */
}

.color-form > div > label, .color-form > div > input {
    line-height: 40px;
}

#btn-toRegister,#btn-modifyAvatar{
    background: #00c6ff;
    border: none;
    color: #000;
    padding: 10px;
    cursor: pointer;
    width: 30%;
    margin-top: 20px;
    /* font-family: 'Orbitron', sans-serif; */
    transition: transform .2s;
}

#btn-toRegister:hover,#btn-modifyAvatar:hover {
    background-color: #007acc;
    transform: scale(1.1);
}

#container-toSignIn{
    margin: 20px 0;
    /* font-family: 'Orbitron', sans-serif; */
}

#btn-toSignIn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    align-self: flex-end;
    transition: color .2s;
    text-decoration: underline;

}

#btn-toSignIn:hover {
    color: #00c6ff;
}
/* 
@media screen and (max-width:1418px) {
    *{
        font-size: 0.8rem;
    }
} */
@media screen and (max-width:510px) {
    *{
        font-size: 0.8rem;
    }

}

@media screen and (max-width:1500px) {
    .form-container{
        left:50%;
    }

}



