*{
    box-sizing: border-box;
}
html{
    scroll-behavior:initial;
}

body{
    font-family: Arial, sans-serif;
    background: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: hsl(0, 0%, 100%);
   
}

                                        /*NAV*/
                                        nav {
                                            position: fixed;
                                            top: 0;
                                            width: 100%;
                                            z-index: 1000;
                                            background-color: rgb(5, 122, 5);
                                            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                                        }.nav-container {
                                        display: flex;
                                        justify-content: space-between;
                                        align-items: center;
                                        padding: 1em 2em;
                                        max-width: 1200px;
                                        margin: auto;
                                        }
                                        
                                        .logo img {
                                        height: 50px;
                                        }
                                        
                                        .nav-links {
                                        display: flex;
                                        align-items: center;
                                        gap: 1.5em;
                                        position: absolute;
                                        right: 3vw;
                                        }
                                                                   
                                        .nav-links :hover{
                                        text-decoration: underline;
                                            font-weight: 600;
                                            cursor: pointer;
                                            color: black;
                                                                }
                                                            
                                        .nav-links a, .nav-links select, .nav-links button {
                                        font-size: 1em;
                                        font-weight: 500;
                                        text-decoration: none;
                                        background: none;
                                        border: none;
                                        cursor: pointer;
                                        color: #ffffff;
                                        }
                                                            
                                        .nav-links .button {
                                          padding: 0.5em 1em;
                                          background: linear-gradient(100deg, #6bcaf3, #4a4af5);
                                          color: white;
                                          border-radius: 5px;
                                          transition: all 0.5s linear;
                                          }
                                          .nav-links .button:hover{
                                            transform: scale(1.1);
                                            background:linear-gradient(100deg, hsl(130, 96%, 74%), hsl(120, 95%, 62%));
                                            
                                          }
                                                            
                                        .menu-toggle {
                                        display: none;
                                        font-size: 2em;
                                        background: none;
                                        border: none;
                                        cursor: pointer;
                                        color: #333;
                                        width: 10vw;
                                        
                                        }
                                         
                                        .navdiv{
                                            width: 70%;
                                            padding: 2%;
                                            padding-top: 1%;
                                            float: left;
                                            height: 100%;
                                        } 
                                        #dropdown{
                                          display:block;
                                       }
                                       #dropdownb:hover{
                                         text-decoration: underline;
                                         color: black;
                                         
                                       }
                                       #dropdownb{
                                         width:100%;
                                         height: 13vh;
                                       
                                       }
                                       
                                       #content{
                                         display:none;
                                         flex-direction: column;
                                         justify-content: center;
                                         align-items: center;
                                         gap: 10px;
                                         border: #333 1px solid;
                                         position: absolute;
                                         top: 15.4vh;
                                         width: 25%;
                                         background-color: rgb(5, 122, 5);
                                        text-align:left;
                                       }
                                        
                                       #dropdown:hover #content{
                                         display: flex;
                                         flex-direction: column;
                                         justify-content: baseline;
                                         align-items: baseline;
                                       }
                                       
                                       
                                         
                                       
                                       li{
                                         width: 100%;
                                        list-style-type: none;
                                         text-decoration: none;
                                       }
                                       
                                       li:hover{
                                         background-color: #6fff00;
                                       }
                                       
                                       #dropdownv{
                                         display:block;
                                       }
                                       
                                       #dropdownvb{
                                         text-align:center;
                                         width:100%;
                                         height: 13vh;
                                         
                                       }
                                       
                                       #dropdownvb:hover{
                                         text-decoration:underline ;
                                         color: black;
                                         
                                       }
                                       
                                       #contentv{
                                         display:none;
                                         flex-direction: column;
                                         justify-content: baseline;
                                         align-items: baseline;
                                         gap: 10px;
                                         border: #333 1px solid;
                                         position: absolute;
                                         top: 15.4vh;
                                         width: 25%;
                                         background-color: rgb(5, 122, 5);
                                        text-align: center;
                                       }
                                       #dropdownv:hover #contentv{
                                         display: flex;
                                       }
                                       
                                       #btnn{
                                          width: 100%;
                                        text-align: left;
                                       }
                                       
                                       
                                       
                                       
                                       #langs{
                                         text-decoration: none;
                                         border: 0;
                                         background-color: rgb(5, 122, 5);
                                       }
                                        
                                                /*MAIN*/
.form-container {
background: white;
padding: 30px;
position: relative;
top: 40vh;
border-radius: 10px;
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
width: 50vw;
}
                                                 
.form-container h2 {
margin-bottom: 20px;
text-align: center;
}
                                                 
input, textarea {
                                                    width: 100%;
                                                    padding: 10px;
                                                    margin-top: 10px;
                                                    margin-bottom: 20px;
                                                    border: 1px solid #ccc;
                                                    border-radius: 5px;
                                                  }
                                                 
                                                  #button {
                                                    width: 100%;
                                                    padding: 10px;
                                                    background: #4CAF50;
                                                    color: white;
                                                    border: none;
                                                    border-radius: 5px;
                                                    font-weight: bold;
                                                    cursor: pointer;
                                                    transition: all 1s linear;
                                                  }
                                                 
                                                  #button:hover {
                                                    transform: scale(1.1);
                                                    background-color: yellowgreen;
                                                  }     
.radio{
    text-align: center;
    border-style: solid;
    padding: 2%;
    margin: 2%;
}
#radio{
    margin-top: 4%;
}

@media (max-width:768px){
  .form-container{
    width:95%
  }


  .menu-toggle {
    display: block;
}
.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgb(5, 122, 5);
    flex-direction: column;
    align-items: center;
    gap: 1em;
    padding: 1em 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-links.show {
    display: flex;
  
}

#content{
  width: 40vw;
  position: relative;
  left: -2vw;
  top: 3vh;
  text-align: center;
  background-color: rgb(201, 198, 6);
  color: black;
}

li:hover{
  background-color: yellow;
}

#contentv{
  width: 40vw;
  position: relative;
  left: -2vw;
  top: 6vh;
  text-align: center;
  background-color: rgb(201, 198, 6);
  color: black;

}
#dropdownb{
  height: 0;
  position: relative;
  right: 3vw;
}

#dropdownvb{
  height: 0;
  position: relative;
  right: 3vw;
  top: 3vh;
}
}

