* {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    scroll-behavior: smooth;
    background-color: #efefef;
}

body::-webkit-scrollbar{
    display: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.container-header {
    background-color: rgb(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navigation ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    border-radius: 10px;
    padding: 10px;
}

.navigation ul li {
    padding: 10px;
}

.navigation ul a {
    text-decoration: none;
    color: snow;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0;
}

.navigation ul a:hover {
    color: #333;
    transition: ease-in 0.3s;
}

.navigation .phr {
    display: none;
}

.navigation button {
    color: #444;
}

header .spMen {
    display: none;
}

.mainbox {
    height: 100vh;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/** */
.container-form{
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    width: 380px;
    /* height: 300px; */
    text-align: center;
}


/** ------------ **/

@media all and (max-width: 800px) {
    
}