*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

html{
    height: 100%;
}

body{
    position: relative;
    margin: 0;
    min-height: 100%;
    padding-bottom: 2.74rem;
    font-family: Arial, Helvetica, sans-serif;
}

header{
    box-shadow: 0px 0px 1.1px;
    display: flex;
    flex-wrap: wrap;
    padding: 1.3% 4%;
}

.navbar{
    display: inline-block;
}

section{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    margin-bottom: 3%;
}

h1{
    color: #3e3e3e;
    font-size: 38px;
    font-weight: 500;
}

.box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    margin-bottom: 3%;
    padding-left: 10%;
}

.content{
    width: 450px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

h2{
    font-size: 30px;
    padding-bottom: 8px;
    font-weight: bold;
}

label{
    font-size: 14px;
    font-weight: 600;
}

.content .input-box{
    margin: 3px 0;
}

.input-box{
    width: 300px;
    position: relative;
}

.input-box input{
    box-sizing: border-box;
    width: 100%;
    height: 51px;
    padding: .8823529412rem;
    border: 1px solid #aaa;
    box-shadow: inset 0 1px 2px hsla(0, 0%, 7%, .1);
    box-sizing: border-box;
    font-family: inherit;
    font-weight: 400;
    font-size: 1rem;
    color: #111;
    appearance: none;
	outline-color: #aaa;
}

::placeholder{
    color: #fff;
}

.input-box.error input{
    border-color: #ff3860;
}

.input-box .error{
    color: #ff3860;
    font-size: 9px;
    height: 13px;
    margin-top: 2px;
}

.fa-solid{
    position: absolute;
    color: lightgray;
    cursor: pointer;
    top: 26%;
    left: 88%;
}

button{
    margin-top: 4%;
    margin-bottom: 4%;
    padding: 15px 30px;
    font-size: 16px;
    background: rgb(211, 23, 142);
    color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: auto;
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover{
    background-color: #050505;
}

.remember-forgot a{
    text-decoration: none;
    color: #d3178e;    
}

.remember-forgot a:hover {
    text-decoration: underline
}

#vertical-line{
    width: 1px;
    height: 270px;
    background-color: lightgray;
    position: absolute;
    left: 50%;
    bottom: 22%;
}

hr{
    display: none;
}

p{
    font-size: 16px;
}

.content1 ul{
    padding-left: 12%;
}

.content1 ul li a{
    font-size: 14px;
    color: #d3178e;
    text-decoration: none;
}

.content1 ul li a:hover{
    text-decoration: underline;
}


footer{
    background-color: #000;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
}

.bottom{
    display: flex;
    flex-wrap: wrap;
    padding: 1.3% 4%;
}

.bottom img{
    width: 80px;
    height: 20px;
}

.bottom ul{
    list-style: none;
}

.bottom ul li a{
    color: #fff;
    font-size: 12px;
    padding: 0 12px;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width:700px){
    .navbar img{
        width: 100px;
    }

    header{
        padding: 3% 4%;
    }

    .box{
        margin-right: 25px;
    }

    h1{
        font-size: 25px;
        font-weight: 600;
    }

    h2{
        font-size: 18px;
    }

    p{
        font-size: 14px;
    }

    #vertical-line{
        display: none;
    }

    .fa-solid{
        right: 1%;
    }

    button{
        width: 300px;
    }

    .remember-forgot{
        font-size: 12px;
    }

    hr{
        display: flex;
        margin-top: 10%;
        margin-bottom: 10%;
        padding-left: 10%;
        padding-right: 10%;
    }

    .bottom img{
        display: none;
    }

    .bottom ul li a{
        font-size: 10px;
        color: lightgray;
    }
}

@media (min-width:701px){
    .content{
        width: 300px;
    }

    .input-box input{
        padding-right: 1px;
    }

    .fa-solid{
        right: 27%;
    }

    #vertical-line{
        left: 107%;
        bottom: 15%;
    }

    .bottom img{
        display: none;
    }
}

@media (min-width:1024px){
    .content{
        width: 420px;
    }

    #vertical-line{
        left: 102%;
    }

    .bottom img{
        display: flex;
    }

}

@media (min-width:1440px){
    .content{
        width: 430px;
    }

    #vertical-line{
        left: 108%;
    }

    .bottom img{
        display: flex;
    }

}



