:root {
    --first-color: white;
    --second-color: #1a73e8;
    --active-page: #202124;
    --not-active-page: #5f6368;
}
* {
    box-sizing: border-box;
}


/* Nav-Bar */
* {box-sizing: border-box}
.nav {
    width: 100%;
    background-color: var(--first-color);
    overflow: auto;
}

.nav a {
    float: left;
    padding: 12px;
    color: var(--not-active-page);
    text-decoration: none;
    font-size: 17px;
    width: 20%; 
    text-align: left;
}

.nav a:hover {
    color: var(--active-page);
}

.nav a.active {
    color: var(--active-page);
    border-bottom: 2px solid var(--second-color);
}

.nav a.logo {
    width: 90px;
    color: var(--active-page);
}
.nav a.logo img {
    margin-right: 5px;
}
  

/*@media (pointer:none), (pointer:coarse) {
    .nav a {
        float: none;
        display: block;
        width: 100%;
        text-align: left;
    }
    .nav .logo {
        display: none;
    }
}*/

@media screen and (max-width: 500px) {
    .nav a {
        float: none;
        display: block;
        width: 100%;
        text-align: left;
    }
    .nav .logo {
        display: none;
    }
}
.nav img {
    float: left;
    width: 15px;
    height: auto;
}

/* Form */

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}


#ladress_zip_code {
    float: right;
    width: 50%;
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

input[type=submit] {
    background-color: var(--active-page);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

input[type=submit]:hover {
background-color: var(--not-active-page);
}

.container {
border-radius: 5px;
padding: 20px;
}

.col-25 {
float: left;
width: 25%;
margin-top: 6px;
}

.col-75 {
float: left;
width: 75%;
margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 500px) {
.col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
}
}