*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Open Sans";
    color: #fff;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4456ac;
    min-height: 8vh;
    font-family: 'Noto Sans JP', sans-serif;
}
.logo h1{
    font-size: 0.8rem;
    float: right;
    margin-top: 1.7rem;
    margin-left: 0.2rem;
}
.navbar-links{
    margin: 0;
    padding: 0;
    display: flex;
}
.navbar-links li{
    list-style: none;
}
.navbar-links li a{
    text-decoration: none;
    color: white;
    padding: 1rem;
    display: block;
}
.navbar-links li:hover{
    background-color: violet;
    opacity: 0px;
}
.burger{
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}
.burger{
    display: none;
    cursor: pointer;
}
.burger .line{
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
@media screen and (max-width:1024px) {
    .logo h1{
        display: none;
    }
    .navbar-links{
        width: 60;
    }
}
@media (max-width: 720px) {
    .logo h1{
        display: none;
    }
    .burger{
        display: flex;
        margin-top: 11px;
    }
    .navbar-links{
        display: none;
        width: 100%;
    }
    .navbar{
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-links{
        width: 100%;
        flex-direction: column;
    }
    .navbar-links li{
        text-align: center;
    }
    .navbar-links li a{
        padding: .5rem .1rem;
    }
    .navbar-links.active{
        display: flex;
    }
}
section{
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('../img/Ilkom.jpg');
    background-size: cover;
    background-position: center center;
}
.form-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background: linear-gradient(rgba(0,0,0,0,3), rgba(0,0,0,0,3)); */
    background-color: rgba(21, 21, 21, 0.7);
    width: 380px;
    padding: 50px 30px;
    border-radius: 10px;
    /* box-shadow: 7px 7px 30px #ffc451; */
    border-style: groove;
    border-color: #ffc451;
}
h1{
    text-transform: uppercase;
    font-size: 2em;
    text-align: center;
    margin-bottom: 1em;
}
.control input{
    width: 100%;
    display: block;
    padding: 10px;
    color: #ffc451;
    margin: 1em 0;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    font-size: medium;
    background-color: rgba(21, 21, 21, 1.0);
}
.control input[type="submit"]{
    background-color: rgba(255, 196, 81, 0.8);
    color: #56445D;
    text-transform: uppercase;
    font-size: large;
    transition: opacity .3s ease;
    border-radius: 10px;
}
.control input[type="submit"]:hover{
    background-color: rgba(255, 196, 81, 1.0);
}