* {
    margin: 2;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    
}
body {
    background-color: rgb(31, 69, 91);
    font-family: orbitron;
}
img {
    max-width: 100%;  /* imagenes responsive */
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
header {
    background-color: rgb(132, 147, 132);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    height: 240px;
}
header img {
    font-size: 10px;
}
nav {
    display: flex;
    gap: 20px;
}
nav a {
    color: white;
}
nav a:hover {
    color: black;
}
div {                  /* el menu amburguesa*/
    font-size: 30px;  
    color: white;
    text-align: center;
}

.header {
    background-image: url();
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;  
    display: flex;
    align-items: center;
    min-height: 35vh;  /* alto de header */
    padding: 80px 0 0 0;
}

.menu {
    position: absolute;
    top: -100px;  /* altura */
    right: 0px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between; 

}
.menu .navbar ul li {  
    position: relative;
    float: left;
}
.menu .navbar ul li a {
    font-size: 20px;
    padding: 10px;
    color: white;
    display: block;
    font-weight: 600;
} 
.menu .navbar ul li a:hover {
    color: black;
}
#menu {
    display: none;
}
.menu-icono {
    width: 25px;
}
.menu label {
    cursor: pointer;
    display: none;
}

.form-content {
    width: 100%;
    max-width: 450px;
    background-color: rgb(36, 39, 36);
    padding: 50px 60px 70px ;
    text-align: center;
    border-radius: 25px;
}
.form-content h1 {
    font-size: 30px;
    margin-bottom: 60px;
    color: white;
    position: relative;
}
.input-field {
    background-color: gray;
    margin: 15px 0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    transition: max-height 0.5s;
    overflow: hidden;
}
input {
    width: 100%;
    background-color: transparent;
    border: 0;
    outline: none;
    padding: 18px 15px;
    color: white;
    font-size: 20px;
}
input::placeholder {
    color: white;
}
.input-field i {
    margin-left: 15px;
    color: green;
}
form p {
    font-size: 13px;
    text-align: left;
}
form p a {
    color: green;
    margin-left: 5px;
}
.btn-field {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.btn-field button {
    flex-basis: 48%;
    font-size: 16px;
    background-color: gray;
    color: white;
    height: 40px;
    border-radius: 30px;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: background 1s;
}
.input-group p {
    height: 40px;
}
.btn-field button.disable {
    background-color: gray;
}

.footer {
    background-color: black;
    padding: 80px 0;  
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
}
.footer-links {
    width: 25%;
    padding: 0 15px;
}
.footer-links h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 500;
    border-bottom: 2px solid greenyellow;
    padding-bottom: 10px;
    display: inline-block;
}
.footer-links ul li a {
    font-size: 18px;
    text-decoration: none;
    color: white;
    display: block;
    margin-bottom: 15px;
    transition: all .3s ease;
}
.footer-links ul li a:hover {
    color:aqua ;
    padding-left: 6px;
}


@media(max-width:991px) {
    .menu {
        padding: 20px;
    }
    .menu label {
        display: initial;
    }
    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgb(93, 115, 93);
        display: none;
    }
    .menu .navbar ul li a:hover {
        color: black;
    }
    .menu .navbar ul li {
        width: 100%;
    }
    #menu:checked ~ .navbar {
        display: initial;
    }
    header {
        flex-direction: column;
    }
    nav {
        margin-top: 15px;
        align-items: center;
    }
    
    
    .footer-row {
        text-align: center;
    }
    .footer-links {
        width: 100%;
        margin-bottom: 30px;
    }
    
}