/*#4a6da7*/

/* primary color : */

/*=====================COLORS=====================*/

:root {
    --primary_color: #be5f3a;
    --primary_color_lighter : ;
    --black : #000000;
    --white: #FFFFFF;

}


section {
    overflow: hidden;
}

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    background-color: var(--white);
    background-attachment: fixed;
    background-position: center;
}

.pageprincipale {
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.pageprincipale .titre {
    position: relative;
    max-width: 750px;
    text-align: center;
}

.pageprincipale .titre h2 {
    font-size: 60px;
}

.pageprincipale .titre p {
    color: var(--white);
    font-size: 18px;
    z-index: -1;
}

.pageprincipale header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: -1;
}

.pageprincipale header .logo {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.box form {
    justify-content: center;
}

.box input {
    position: relative;
    justify-content: center;
    display: block;
    font-size: 20px;
    box-sizing: border-box;
}

.box input[type="text"] {
    background: var(--primary_color);
    width: 350px;
    height: 50px;
    border: none;
    outline: none;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.box input[type="text"]::placeholder {
    color: #e0e0e0;
}

.box input[type="password"] {
    background: var(--primary_color);
    width: 350px;
    height: 50px;
    border: none;
    outline: none;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.box input[type="password"]::placeholder {
    color: #e0e0e0;
}

.box input[type="submit"] {
    position: relative;
    height: 50px;
    width: 150px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #ffffff;
    color: black;
    border: solid 3px var(--primary_color);
}

.box input[type="submit"]:hover {
    background: var(--primary_color);
    color: #ffffff;
}


/*==========================*/

.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: var(--primary_color_lighter);
}

.banner img.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.banner .content {
    position: relative;
    max-width: 750px;
    text-align: center;
}

.banner .content .logo {
    height: 100px;
    margin-bottom: 50px;
}

.banner .content h2 {
    font-size: 40px;
}

.banner .content p {
    color: var(--white);
    font-size: 18px;
    z-index: -1;
}

.box {
    padding-top: 30px;
}

.box input {
    position: relative;
    display: inline-block;
    font-size: 20px;
    box-sizing: border-box;
}

@media (max-width:1230px) {
    .banner {
        padding: 50px;
    }
    .banner header {
        padding: 20px 50px;
    }
    .banner .content h2 {
        font-size: 36px;
    }
    .banner .content p {
        font-size: 16px;
    }
    .box input {
        font-size: 14px;
    }
    .box input[type="search"] {
        width: 250px;
        height: 40px;
    }
    .box input[type="submit"] {
        height: 40px;
        width: 90px;
        top: 0px;
    }
}

@media (max-width:450px) {
    .box input[type="search"] {
        border-radius: 25px 25px 25px 25px;
    }
    .box input[type="submit"] {
        top: 5px;
        border-radius: 25px 25px 25px 25px;
    }
}