.signIn{
    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;
}

.signIn form{
    display: flex;
    flex-direction: column;
    font-size: 125%;
}

.signIn p{
    margin: 1vh 0px;
}

.dark-main .signIn 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;
    border: none;
}

.light-main .signIn 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;
    border: none;
}

.signIn 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;
}

.signIn button{
    font-size: 2vh;
    margin-top: 3vh;
    background: #ced4da;
    padding: 1vh;
    border-radius: 15px;
    color: #f8f9fa;
    box-shadow: 0px 4px 15px -5px #716969;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.signIn button[type="submit"]{
    background: #0046d5;
    box-shadow: 0px 4px 15px -5px #0046d5;
}

.signIn button[type="submit"]:hover{
    background-color: #023e8a;
}

.signIn .input-group{
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 1vh 0;
}

.signIn label:not(.custom-checkbox){
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    transition: transform 150ms ease-out, font-size 150ms ease-out;
}

.signIn img{
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.focused label {
    transform: translateY(-200%);
    font-size: .75em;
  }

.signIn .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;
}

.signIn .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, .register-a-google{
    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-google{
    background-color: #f8f9fa;
    color: #0f0f0f;
    margin-top: 5%;
}

.register-a:hover{
    background-color: #ced4da;
    color: #0f0f0f;
}

.signIn h3{
    text-align: center;
    margin-top: 2vh;
}

.dark-inputSubnetting{
background-color: rgb(19, 19, 19);
color: #ced4da;
}

.light-inputSubnetting{
    background-color: #f8f9fa;
}

.custom-checkbox {
    display: inline-block;
    position: relative;
    padding-right: 35px;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 4px;
    border: 2px solid #0046d5;
}

.custom-checkbox:hover input~.checkmark {
    background-color: #ccc;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #0046d5;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-contanier {
    display: flex;
    justify-content: space-around;
    width: 75%;
}

.checkBoxContanier {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 15px;
}

@media screen and (width <= 350px) {
    .signIn{
        min-width: 250px
    }
}
