* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    font-family: sans-serif;

}

:root {
    --offwhite: #f1f1f1;
    --white: #fff;
    --black: #282A35;
    --green: #14A800;
    --darkgreen: #159603;
}

body {
    background-color: var(--offwhite);
    margin: auto;
}


/* navbaar\ */

.banner {

    margin: auto;
    background-color: var(--green);


}

.navbar {
    padding: 10px;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    max-height: 250px;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;

}

.logo img {
    border-radius: 50%;
    width: 80px;

}

.logo-title {
    margin-left: 10px;

    font-weight: 800;
    color: var(--white);
    font-size: 1.8em;
}

.logo-title {
    animation: effect 2s infinite;
}

@keyframes effect {
    0% {
        font-size: 1.8em;
        -webkit-background-clip: text;
    }

    100% {
        font-size: 2em;
        -webkit-background-clip: text;
    }
}


.logo-title a {
    color: white;
}





button {
    background-color: var(--white);
    /* Green */
    border: none;
    color: var(--black);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    font-size: 19px;
}


/* formsection*/
form {border: 3px solid #f1f1f1;
max-width: 300px;

margin: auto;
}

form h2{
    text-align: center;
}

input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

button {
  background-color:var(--green);
    color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

button:hover {
  opacity: 0.8;
}

.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
}

img.avatar {
  width: 40%;
  border-radius: 50%;
}

.container {
  padding: 16px;
}




/* footer */

footer
{
    position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

.footer-boxes {
    background-color: black;
    color: white;
    text-align: center;

    padding: 60px 20px;
    line-height: 1.4;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 4em;

}

.footer-boxes a {
    color: white;

}

.footer-boxes a:hover {
    font-size: 1.3em;
}