* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}


.navbar {
    width: 100%;
    background-color: #F7F7F7;
    box-shadow: 0px 0px 10px grey;
}

.nav-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    margin: 0 10px;
}

.logo img {
    width: 100%;
    max-width: 250px;
    min-width: 200px;
}

.nav-content a {
    text-decoration: none;
    color: grey;
    margin-left: 30px;
    transition: all 200ms ease-in-out;
}

.nav-content a:hover {
    color: #006838;
}


.form-container {
    width: 70%;
    height: auto;
    margin: 50px auto;
    padding: 20px;
    box-shadow: 0px 0px 10px 1px grey;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.form-heading {
    text-align: center;
}

.form-heading h1 {
    margin: 10px;
    color: #006838;
}

.input-section {
    width: 100%;
    display: flex;
    align-items: center;
    /* justify-content: space-evenly; */
    flex-wrap: wrap;
    /* gap: 20px; */
    margin: 30px 0px;
}

.input-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 20px;
}

.required {
    color: red;
}

.perm-add-sec label,
.input-div label {
    font-size: 1em;
    color: grey;
    font-weight: 500;
    margin-bottom: 5px;
}

.bottom-border {
    border: none;
    background: none;
    border-bottom: 1px solid #006838;
    width: 220px;
    padding: 5px;
    font-size: 0.9em;
}

.bottom-border:focus {
    outline: none;
}

.perm-add {
    width: 100%;
    margin-top: 10px;
}

.perm-add-sec {
    margin: 30px auto;
    width: 95%;
}

.border-file {
    background: none;
    border: 1px dotted #006838;
    /* width: 60%; */
    padding: 30px;
    font-size: 0.9em;
}

.custom-btn::-webkit-file-upload-button {
    background-color: #006838;
    color: whitesmoke;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-family: "Outfit", sans-serif;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}

.custom-btn::-webkit-file-upload-button:hover {
    background-color: #014425;
}

.btn {
    background-color: #006838;
    color: whitesmoke;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-family: "Outfit", sans-serif;
    cursor: pointer;
    transition: all 200ms ease-in-out;
    font-size: 1.1em;
}

.btn:hover {
    background-color: #014425;
}

.input-section-button {
    text-align: center;
    margin: 10px auto;
}

option {
    background-color: #014425;
    color: whitesmoke;
}
