.register{
    min-width: 300px;
    width: 20vw;
    margin: 0px auto;
    margin-top: 5vh;
    display: flex;
    flex-direction: column;
    /* background-color: #f8f9fa; */
    -webkit-box-shadow: 0px 5px 25px 0px rgba(45,45,64,1);
    -moz-box-shadow: 0px 5px 25px 0px rgba(45,45,64,1);
    box-shadow: 0px 5px 15px -5px rgba(45,45,64,1);
    padding: 2vh;
    border-radius: 15px;
}

.register form{
    display: flex;
    flex-direction: column;
    font-size: 125%;
}

.register p{
    margin: 1vh 0px;
}

.register input{
    border: none;
    outline: none;
    padding-top: 5%;
    font-size: 125%;
    /* background-color: #f8f9fa; */
    -webkit-box-shadow: 0px 1px 0px 0px #ced4da;
    -moz-box-shadow: 0px 1px 0px 0px #ced4da;
    box-shadow: 0px 1px 0px 0px #ced4da;
}

.register input:focus{
    -webkit-box-shadow: 0px 2px 0px 0px #0046d5;
    -moz-box-shadow: 0px 2px 0px 0px #0046d5;
    box-shadow: 0px 2px 0px 0px #0046d5;
}

.register button{
    font-size: 2vh;
    margin-top: 3vh;
    background: #ced4da;
    padding: 1vh;
    border-radius: 15px;
    color: #f8f9fa;
    box-shadow: 0px 4px 15px -5px #ced4da;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.register button[type="submit"]{
    background: #0046d5;
    box-shadow: 0px 4px 15px -5px #0046d5;
}

.register button[type="submit"]:hover{
    background-color: #023e8a;
}

.register .input-group{
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 1vh 0;
}

.register label{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    transition: transform 150ms ease-out, font-size 150ms ease-out;
}

.register img{
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.focused label {
    transform: translateY(-200%);
    font-size: .75em;
  }

.register .input-group .filled{
    -webkit-box-shadow: 0px 2px 0px 0px #16db65;
    -moz-box-shadow: 0px 2px 0px 0px #16db65;
    box-shadow: 0px 2px 0px 0px #16db65;
}

.register .input-group .wrong{
    -webkit-box-shadow: 0px 2px 0px 0px #db1616;
    -moz-box-shadow: 0px 2px 0px 0px #db1616;
    box-shadow: 0px 2px 0px 0px #db1616;
}

.line-wrap{
    margin: 1vh 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.line{
    border-bottom: solid #716969;
    height: 0;
    flex-basis: 30px;
    flex-grow: 1;
    margin: 0 7px;
}

.line-wrap p{
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 400;
    text-align: left;
}

.register-a{
    margin-top: 1vh;
    background: #716969;
    padding: 1vh;
    border-radius: 15px;
    color: #f8f9fa;
    box-shadow: 0px 4px 15px -5px #716969;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-align: center;
}

.register-a:hover{
    background-color: #ced4da;
    color: #0f0f0f;
}

.register h3{
    text-align: center;
    margin-top: 2vh;
}

.done{
    text-decoration: line-through;
    color: #ced4da;
}

.dark-inputSubnetting{
    background-color: rgb(19, 19, 19);
    color: #ced4da;
    }
    
.light-inputSubnetting{
    background-color: #f8f9fa;
}

@media screen and (width <= 350px) {
    .register{
        min-width: 250px
    }
}