/* defaults */
html, body {
    padding: 0;
    margin: 0;
    background-color: black;
    color: white;
    font-family: Helvetica, Arial, sans-serif;
}
body::-webkit-scrollbar {
    display: none;
}
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* navigation */
nav {
    width: 100vw;
    height: 16vh;
}
nav img {
    width: 20vw;
    margin-left: 40vw;
}
.nav-items {
    width: 100vw;
    display: flex;
    justify-content: space-around;
}
.nav-items a {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2vh;
    color: white;
}
/* footer */
footer {
    color: white;
}
.footer-top {
    width: 90vw;
    height: 40vh;
    margin-left: 5vw;
}
.footer-initials {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15vw;
    height: 40vh;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 4vh;
    float: left;
}
.footer-pages, .footer-stores {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 37.5vw;
    height: 40vh;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 3vh;
    float: left;
}
.footer-pages a {
    color: white;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2vh;
}
.footer-stores b, .footer-stores span {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2vh;
}
.footer-stores b {
    line-height: 2.6;
}
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 8vh;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2vh;
}
form{
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: black;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.form-group {
  margin-bottom: 20px;
}
input[type="text"], input[type="tel"],input[type="number"], input[type="mail"], input[type="password"]{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.label{
  display: block;
  font-weight: bolder;
  font-size: 24px;
}
input[type="submit"] {
  display: block;
  width: 105%;
  padding: 10px;
  background-color: gray;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  float: center;
}
input[type="submit"]:hover {
  background-color: #5A5A5A;
}
.error{
    margin:0 auto;
}
/* responsive */
@media only screen and (max-width: 768px) {
    input[type="submit"]{
        width: 91%;
    }
    input[type="text"], input[type="tel"],input[type="number"], input[type="mail"], input[type="password"]{
        width: 85%;
    }
    nav img {
        width: 100vw;
        margin-left: 0;
    }
    nav {
        height: auto;
    }
    .nav-items {
        width: 100vw;
        overflow: scroll;
        justify-content: flex-start;
    }
    .nav-items a {
        font-size: 3vh;
        padding-left: 6vw;
        padding-right: 6vw;
        float: left;
    }
    
    .footer-top, .footer-top div {
        width: 100vw;
        height: auto;
        float: none;
        margin-left: 0;
    }
    .footer-top div {
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: center;
    }
    .footer-bottom {
        font-size: 1.5vh;
    }
}