* {
    margin: 0;
    padding: 0;
    font-family: myFonts;
}

@font-face {
    font-family: myFonts;
    src: url(/font/ProximaNova-Regular.ttf);
}

/* nav bar */

header {
    position: fixed;
    color: rgb(255, 255, 255);
    background-color: #0A075F;
    background-position: center;
    width: 100%;
    z-index: 100;
    top: 0%;

}

nav {
    display: grid;
    gap: 300px;
}

ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 30px 60px;
}

a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.list-nav {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.border button {
    border: 1px solid #ffffff;
    background: none;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
}

.border .lgn{
    color: #FF78F6;
}

.logo img {
    width: 120px;
    height: 30px;
}

/* section signup */

.signup{
    display: flex;
}

.image-signup img{
    width: 740px;
    height: 100%;
}

.info-signup{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 630px;
    height: 860px;
}

.inputs{
    display: grid;
    justify-content: center;
    align-items: center;
    font-size: 32px;
}

form{
    display: grid;
}

.inputs button{
    width: 130px;
    height: 48px;
    border-radius: 20px;
    border: none;
    background-color: #0A075F;
    color: #ffffff;
}

.inputs input{
    width: 480px;
    height: 57px;
    border-radius: 20px;
    border: 1px solid #0A075F;
    padding-left: 20px;
}

.inputs label{
    font-weight: bold;
}

.inputs h3{
    font-size: 50px;
    margin-top: 260px;
    margin-bottom: 70px;
    text-align: center;
}

/* section footer */

footer {
    background-color: #0A075F;
    width: 100%;
    height: 100%;
}

.all-footer {
    padding: 40px;
    display: flex;
    justify-content: space-around;
    color: white;
}

.footers {
    width: 300px;
}

.footers h3{
    font-size: 23px;
}

.footers h5 , p{
    font-size: 12px;
}

.image-logo{
    width: 190px;
    height: 50px;
}

.email-searche {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    border: 1px solid #ffffff;
    background-color: #F2F4FF;
    border-radius: 30px;
    padding: 8px 2px;
}

.email-searche button {
    border: none;
    background-color: #F5167E;
    color: white;
    padding: 12px 10px;
    border-radius: 20px;
}

.email-searche input{
    border: none;
}

.copyright h5{
    text-align: center;
    color: white;
}