@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jacquarda+Bastarda+9&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {

    margin: 0;
    padding: 0;
    background-color: rgba(115, 255, 166, 0.329);
    display: flex;
    flex-direction: column;
    align-items: center;

}

#setting-form {

    font-family: "Roboto";
    background-color: rgba(74, 222, 128, 1);
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 100px;
    margin: 50px 0px;

}

#setting-form .form-title {

    font-family: "Roboto";
    color: white;

}

#setting-form ul {

    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0;

}

#setting-form ul li {

    display: flex;
    flex-direction: column;
    gap: 10px;

}

#setting-form ul li input {

    width: 450px;
    height: 48px;
    border: none;
    border-radius: 3px;
    padding: 0 20px;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.371);

}

#setting-form ul li input:focus {

    border: none;

}

#setting-form ul li label {

    color: white;
    font-family: 'Roboto';
    font-size: larger;
    font-weight: 300;

}

#setting-form ul li button {

    width: 200px;
    height: 60px;
    margin-top: 50px;
    align-self: center;
    border: solid 4px white;
    border-radius: 5px;
    color: white;
    background-color: transparent;
    font-family: 'Roboto';
    font-size: larger;
    font-weight: 300;
    transition: 0.5s;

}

#setting-form ul li button:hover {

    background-color: white;
    color: rgba(74, 222, 128, 1);
    font-weight: 500;

}

header {

    width: 100%;
    height: 100px;
    background-color: rgba(15, 235, 95, 1);
    display: flex;
    align-items: center;
    gap: 15px;

}

header a {

    text-decoration: none;
    color: white;
    font-family: 'Oswald';

}

header a i {

    font-size: xx-large;
    margin-left: 50px;

}