.cardNewUser{
    width: 600px;
    padding: 20px 20px;
    border-radius: 5px;
    background-color: var(--color-body-dark);
    box-shadow: var(--box-shadow);
    position: relative;
    margin-top: 100px;
}

.cardNewUser>h3{
    color: var(--color-title-dark);
    margin-bottom: 20px;
}

.cardNewUser>button{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 2px;
    background-color: var(--bg-rd);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.cardNewUser>button>img{
    width: 100%;
}

.cardNewUser>button:hover{
    background-color: var(--bg-hover-rd);
}

.cardNewUser>form{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.cardNewUser>form>label{
    width: 100%;
    color: var(--color-title-dark);
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cardNewUser>form>label>input{
    width: 60%;
    height: 30px;
}

.cardNewUser>form>button{
    align-self: flex-end;
    height: 35px;
    border: none;
    background-color: var(--bg-principal-dark);
    color: var(--color-title-dark);
    padding: 0 10px;
    cursor: pointer;
}