* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
    font-family: "IBM Plex Sans", sans-serif;
}

body{
    max-width: 1440px;
    background-color: #f0f4f0;
    overflow: hidden;
    margin: auto;
}

/* designing the navigation bar  */
nav {
    height: 15vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

nav img {
    width: 150px;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    list-style: none;
    margin-right: 50px;
    font-weight: 600;
}

nav ul li:first-child {
    font-weight: 700;
    color: #20bc7e;
}

a {
    text-decoration: none;
    color: black;
}

/* designing the main section and form  */

main {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


form {
    width: 350px;
    box-shadow: 0 0 10px black;
    border-radius: 10px ;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form h1 {
    text-align: center;
}

form div {
  display: flex;
  flex-direction: column;
}

form div label{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}


form div input {
    border: transparent;
    border-radius: 10px;
    padding: 5px 10px;
}

form div textarea {
    resize: none;
    height: 100px;
    border: transparent;
    border-radius: 10px;
    padding: 5px 10px;
}
button{
    color: white;
    border: transparent;
    background: #20BC7E;
    padding: 10px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
}