  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      
      background-color: #1a485c;
    }
        
.container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            max-width: 400px;
            height: auto;
            background: #fff;
            margin-top: 100px;
            margin-bottom: auto;
            margin-left: auto;
            margin-right: auto;
            padding: 20px;
            border-radius: 5%;
            box-shadow: 10px 10px 5px 0px rgba(23,25,25,0.75);
            -webkit-box-shadow: 10px 10px 5px 0px rgba(23,25,25,0.75);
            -moz-box-shadow: 10px 10px 5px 0px rgba(23,25,25,0.75);
        }

        
.footer {
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            background-color: #0d668c;
            color: white;
            text-align: center;
            -webkit-border-top-left-radius: 30px;
            -webkit-border-top-right-radius: 30px;
            -moz-border-radius-topleft: 30px;
            -moz-border-radius-topright: 30px;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
            }


nav {
      background-color: #b1b9bc;
      color: white;
      margin-top:25px;
      padding: 0.5rem 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }

    .nav-links {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      padding: 0.5rem;
      transition: background 0.3s;
    }

    .nav-links a:hover {
      background: #e67300;
      border-radius: 4px;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      background-color: #444;
      min-width: 150px;
      border-radius: 4px;
      overflow: hidden;
    }

    .dropdown-content a {
      display: block;
      padding: 0.5rem;
    }

    .dropdown:hover .dropdown-content {
      display: block;
     
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }


      .nav-links.active {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }


table, th, td {
  border: 1px solid green;
  border-collapse: collapse;
}

.container img{
    display: block;
    border: 2px solid green;
    margin: auto;
}


.container  input,select{
            outline: 0;
            border-bottom: 2px solid green;
            border-left: 0px;
            border-top: 0px;
            border-right: 0px;
            margin-bottom: 20px;
            padding: 10px;
            width: 100%;
            line-height: 1.3rem;
            font-size: 16px;
        }
.container input:focus{
    border-bottom: 2px solid #f58a42;
}
.container select:focus{
    border-bottom: 2px solid #f58a42;
}
