*{
    margin: 0;
    padding: 0;
}

body{
    background:white;
    line-height: 1.5;
}
header{
  z-index: 1000;
  top: 0;
  position: sticky;
    background: #026969;
    padding: 20px 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    font-size: 50px;
    font-weight: bold;
    color: white;
    font-style: oblique;
    text-decoration: none;
  
  }
  .logo img{
    height: 70px;
    width: auto;
    margin-left: 10px;
    border-radius: 50px;
    padding-top: 20px;
  }
  
  ul{
    list-style: none;
    background:white;
    border-radius: 30px;
  }ul li{
    display: inline-block;
    position: relative;
  }
  ul li a{
    display: block;
    padding: 20px 25px;
    color: black;
    text-decoration:none ;
    text-align: center;
    font-size: 20px;
  }
  ul li  ul.dropdown li{
    display: block;
  }
  ul li ul.dropdown {
    width: 100%;
    background: white;
    position: absolute;
    z-index: 999;
    display: none;
  }
  ul li a:hover{
    background:  #023e3a;
    }
    ul li:hover ul.dropdown{
        display: block;
    }


.record-form{
    padding:40px 10%;
}

form{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 4px 10px ;
    border-left:#0a728f solid 5px;
    border-right:#0a728f solid 5px;
}

label{
    font-weight:bold;
    display:block;
    margin-top:20px;
}

input, select, textarea{
    width:100%;
    padding:12px;
    margin-top:8px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:16px;
}

textarea{
    height:100px;
}

.btn{
    margin-top:20px;
    padding:12px 20px;
    background:#026969;
    color:white;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

.btn:hover{
    background:#024f4f;
}

 
.fa{
  margin-right: 6px;
  vertical-align: middle;
  font-size: 30px;
  color: black;
}

footer{
    background:#023e3a;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}


.success-box {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #d4edda;
  color: #155724;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  animation: fadeIn 0.5s ease-in-out;
  z-index: 1000;
}

.success-box h2 {
  margin: 0;
  font-size: 16px;
}

.success-box p {
  margin: 5px 0 0;
  font-size: 14px;
}


/* SUCCESS POPUP */

.popup{
  position: fixed;
  top: 20px;
  right: 20px;
  background: #026969;
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-weight: bold;
  z-index: 9999;
  animation: fadeIn 0.5s ease;
}

/* ANIMATION */

@keyframes fadeIn{
  from{
      opacity: 0;
      transform: translateY(-20px);
  }

  to{
      opacity: 1;
      transform: translateY(0);
  }
}

/* Fade in animation */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}