@charset "utf-8";
/* CSS Document */
:root {
    --fonts: "Poppins", "Arial", "Helvetica Neue", sans-serif;
    --main-background-color: #DBDDE0; /* light grey */
	  --main-navbar-color: #122133; /* dark grey blueish */
	  --side-navbar-color: #45505f;
    --main-orange-color: #E85F41;
    --headline-text-color: #3B3B3B;
	  --body-text-color: #5A5A5A;
	  --container-background-color: #F5F5F5;
	  --mainContainer-background-color: #FFFFFF;
    --h2-color: #4c5154;
    --content-span-color: grey;
    font-size: 16px;
  }
/* ////////// default ///////// */
body{
	background-color: var(--main-background-color);
  font-family: var(--fonts);
  color: #666; /* font farve */
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4 {
  font-weight: 400;
}
main {
  display: flex;
  justify-content: center;

}
  .container-wrapper {
    margin-top: 2rem;
    height: 650px;
    width: 900px;
    background-color: var(--main-orange-color);
    box-shadow: 0 5px 10px rgba(154,160,185,.05), 0 15px 40px rgba(166,173,201,.2);
    border-radius: 20px;
    position: relative;
  }
    .picture-fitness {
      float: left;
      z-index: 1;
      background-color: var(--main-orange-color);
      border-radius: 20px;
      width: 320px;
      height: 100%;
      position: absolute;
      overflow-x: hidden;
    }
      .picture-fitness img {
        position: absolute;
        height: 100%;
        left: -20rem;
      }
    .formular-wrapper {
      margin-left: 320px;
      width: 580px;
      height: 100%;
      background-color: var(--container-background-color);
      border-top-right-radius: 20px;
      border-bottom-right-radius: 20px;
    }
      .formular-wrapper > div {
        margin-left: 2rem; 
      }
      /* header - sign up / log in / gå ud */
      .formular-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        cursor: default;
        margin-bottom: 0rem;
      }
        .formular-header img { 
          margin-right: 2.8rem;
          height: 2.5rem;
          width: auto;
          opacity: 0.5;
          cursor: pointer;
        }
        .signUp {
          margin-left: -10rem;
        }
        .h1-active {
          opacity: 1;
          color: var(--main-orange-color);
          text-decoration: underline;
          cursor: pointer;
        }
        .h1-notActive {
          opacity: 0.5;
          color: var(--h2-color);
          text-decoration: none;
          cursor: pointer;
        }
        .h1-notActive:hover {
          opacity: 1;
        }

        /* input formular content */
        .logIn-container {
          display: none;
        }
        td {
          padding-bottom: 1rem;
        }
        td:nth-child(even) {
          padding-left: 2rem;
        }
          /* navn/header på input felt */
          label {
            font-size: 1rem;
            color: var(--body-text-color);
            text-transform: capitalize; /* skriver første bogstav med stort */
            display: block;
            opacity: 0.8;
          }
          label:hover {
            color: var(--main-orange-color);
            opacity: 1;
          }
          /* input felt */
          input, .chosen {
            border: none;
            line-height: 3.1rem; /* højden på felt */
            background: var(--mainContainer-background-color);
  /* inset dæmpet invendig skygge */
            border-radius: 5px;
            padding: 0 1rem; /* rygger input ind, så det ikke er helt ud til kanten */
            font-size: 1rem;
            color: var(--body-text-color); /* input font farve */
          }
          input:focus {
            border-left: 5px solid var(--content-span-color);
            outline: none;
          }
        /* klik videre når færdig */
        .logIn-footer, .signUp-footer {
          display: flex;
          justify-content: center;
          align-items: center;
          height: 2.5rem;
          margin-top: 2rem;
          overflow-y: hidden;
          cursor: pointer;
        }
        .logIn-footer h3, .signUp-footer h3 {
          margin: 0;
        }
        .logIn-footer button, .signUp-footer button {
          background-color: var(--main-orange-color);
          border-radius: 10px;
          opacity: 0.8;
          color: white;
          cursor: pointer;
          border: none;
          padding: 0 0.5rem 0 0.5rem;
          font-size: 1rem;
          width: 50%;
          height: 2.5rem;
        }
        .logIn-footer button:hover, .signUp-footer button:hover {
          opacity: 1;
          background-color: var(--main-navbar-color);
        }






@media only screen and (max-width: 1000px) {
  .picture-fitness {
    display: none;
  }
  .formular-wrapper {
    border-radius: 20px;
  }

}
