*{
    border: 0px;
    padding: 0px;
    margin: 0;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
body{
    display: flex;
    justify-content: center;
    height: 100vh;
    background-image: url("./images/background.jpg") ;
    background-repeat:no-repeat ;
    background-size: cover;
    background-position: center;
    margin: 0;
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9;
    position: fixed;
    top: 0px;
    left: 0px;
    padding: 17px ;
    align-items: center;
    width: 100%;
    background-color:transparent;
}
.logo {
    margin-top: 12px;
    height: 2.5rem;
    display: flex;
    margin-right:0 ;
    margin-left: 10px;
    justify-content: center;
    color:beige;
}
body > div > div > div{
    margin-top:27px ;
}
.navItems > a{
    position: relative;
    font-size: 1.2em;
    color: beige;
    font-weight: 500;
    margin-left: 30px;
    margin-right: 10px;
    text-decoration: none;
    cursor: pointer;
}
.navItems > a::after{
    content: '';
    left: 0;
    top: 20px;
    position: absolute;
    width: 100%;
    height: 3px;
    background:beige ;
    border-radius: 5px;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.5s;
}
.navItems > a:hover::after{
    transform: scaleX(1);
    transform-origin: right;
}
.wrapper{
    position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
    color: beige;
    width: 400px;
    height: 430px;
    background-color: transparent;
    border-radius: 20px;
    border: 2px solid beige;
    backdrop-filter: blur(40px);
}
.logInForm2 h2{
    font-size: 3em;
    color: beige;
    text-align: center;
    font-weight: 500;
}
.input-box{
  position: relative;
  width: 100%;
  height: 20px;
  margin: 20px;
  color: beige;
}
.input-box input{
    background: transparent;
    margin-left: 5px;
    border: 1px solid wheat;
    border-radius: 5px;
    padding-left:5px;
    padding-right:15px;
}
.noaccount a{
    text-decoration: none;
    color: #EB3678;
    cursor: pointer;
}
.noaccount a::after{
    content: '';
    left: 0;
    top: 20px;
    position: absolute;
    width: 100%;
    height: 3px;
    background:red ;
    border-radius: 5px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.5s;
}
.noaccount a:hover::after{
    transform: scaleX(1);
    transform-origin: left;
    background-color: red;
}
body > div > div > div > div > div.col-md-10.mx-auto.col-lg-5 > div > div > form > button{
    width: 100%;
    padding: 5px;
    border: 1px solid beige;
    border-radius: 5px;
    font-size: 1em;
    color: beige;
    font-weight: 5 00;
    margin: 10px;
    transition: .3s;
    cursor: pointer;
}
body > div > div > div > div > div.col-md-10.mx-auto.col-lg-5 > div > div > form > button::after{
    content: '';
    left: 0;
    top: 20px;
    position: absolute;
    width: 100%;
    height: 3px;
    background:beige ;
    border-radius: 5px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.5s;
}
body > div > div > div > div > div.col-md-10.mx-auto.col-lg-5 > div > div > form > button:hover{
    background-color: beige;
    color: #021526;
}
body > div > div > div > div > div.col-md-10.mx-auto.col-lg-5 > div > div > form > button:hover::after{
    
    transform: scaleX(1);
    transform-origin: left;
    
}
.logInForm h2{
    font-size: 3em;
    color: beige;
    text-align: center;
    font-weight: 500;
}
.signup{
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: normal;
    color: gold;
}
body > div > div > div > div > div.col-lg-7.text-center.text-lg-start.text-light > p > span{
    color:gold;
    font-weight: 500;
}
body > header > div{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.titleLogo{
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    header {
        position: absolute;
        flex-direction: column;
        align-items: flex-start;
    }
    .input-box {
        margin: 1.3rem;
    }
    body {
         background-position:right;
        background-repeat: repeat;
    }
    .titleLogo {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .body>header>nav {
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .logo {
        height: 2rem;
    }

    .navItems {
        margin-top: 0.6rem;
        padding: 0;
    }

    body>div>div>div>div>div.col-lg-7.text-center.text-lg-start.text-light>h1 {
        font-size: 2rem;
        padding-bottom: 0.6rem;
    }

    .wrapper {
        width: 100%;
        padding: 0.93rem;
        margin-top: 1.8rem;
    }

    .input-box input {
        padding-left: 0.18rem;
        padding-right: 0.6rem;
    }

    body>div>div>div>div>div.col-lg-7.text-center.text-lg-start.text-light {
        margin-top: 10%;
    }

    body>div>div>div>div>div.col-md-10.mx-auto.col-lg-5>div>div>form>button {
        font-size: 0.9rem;
        padding: 0.18rem;
    }
}
