@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root{
  --color-blue100: #0f3250;
  --color-blue25: #add5de;
  --color-blue5:#e4f5f9;
  --color-red-primary: #A80D2C;
  --color-red-secondary: #EE4543;
  --color-creme50: #fbfaf5;
}

html, body{
  height: 100%;
}

body {
  background-color: var(--color-creme50);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  overflow-x: hidden;

  .background-wave{
    position: absolute;
    top: 260px;
    width: 146%;
    height: auto;
    z-index: -1;
    left: -170px;

    @media screen and (min-width: 768px) {
      bottom: -50px;
      right: -110px;
      left: unset;
      top: unset;
      width: 400px;
      height: auto;
      position: fixed;
    }
  }

  .account-settings-container {
    display: flex;
    width:85%;
    background-color: var(--color-blue5);
    padding: 1rem 1rem;
    border-radius: 20px;
    align-self: center;
    @media screen and (min-width: 768px) {
      width: 100%;
      max-width: 1200px;
      img{
        margin: 2rem;
      }
    }
  }

  .settings-btn {
    color: var(--color-blue100);
    align-self: center;
    width: 100%;
    text-align: left;
    padding: 0;
  }

  .settings--logo{
    width: 40px;
    height: auto;
  }

  .strong-settings{
    font-size: 14px;
    @media screen and (min-width: 768px) {
      font-size: 16px;
    }
  }

  .modify-account{
    font-size: 12px;
    text-decoration-line: underline;
    margin: 0;
    padding-top: 10px;
  }

  .menu-container{
    position: fixed;
    bottom: 0;
  }
  .logo_desktop{
    display: none;
    text-decoration: none;
    color: inherit;
    p{
      margin: 0;
      font-size: 14px;
    }
    @media screen and (min-width: 768px) {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-right: auto;
    }
  }
  .custom-footer {
    background-color: #ffffff;
    justify-content: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    align-items: center;

    .nav-link{
      .menu-link-text{
        display: none;
      }
    }
    @media screen and (min-width: 768px) {
      bottom: unset;
      top: 0;
      gap:1rem;
      padding-left: 1rem;
      padding-right: 1rem;
      .nav-link{
        .menu-link-text{
          display: inline-block;
        }
      }
    }
  }

  .nav-link {
    color: var(--color-blue100);
    margin: 1rem 0rem;
  }

  .main{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    padding-bottom: 100px;
    @media screen and (min-width: 768px) {
      padding-bottom: 40px;
      padding-top: 160px;
    }
  }

  .main--logo{
    display: block;
    width: 280px;
    height: auto;
    margin: -2.5rem;
  }
  form .errorlist{
    list-style-type: none;
    padding-left: 0;
    font-size: 80%;
    color: red;
  }
}
