:root {
    --primary-color: #010712;
    --secondary-color: #818386;
    --bg-color: #FCFDFD;
    --button-color: #3B3636;
    --h1-color: #3F444C;
  }
  
  #contact-form [data-theme="dark"] {
    --primary-color: #FCFDFD;
    --secondary-color: #818386;
    --bg-color: #010712;
    --button-color: #818386;
    --h1-color: #FCFDFD;
  }
  
  #contact-form * {
    margin: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
  }
  
  #contact-form .contact-container {
    display: flex;
    width: 100vw;
    height: 80vh;
    background: var(--bg-color);
  }
  
  #contact-form .left-col {
    width: 45vw;
    height: 100%;
    background-image: url("../img/contact.JPG");
    background-size:cover;
    background-repeat: no-repeat;
  }
  
  #contact-form .logo {
    width: 10rem;
    padding: 1.5rem;
  }
  
  #contact-form .right-col {
    background: var(--bg-color);
    width: 60vw;
    height: 80vh;
    padding: 5rem 3.5rem;
  }
  
  #contact-form h1, label, button, .description {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1rem;
  }
  
  #contact-form h1 {
    color:var(--h1-color);
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: 0.5rem;
    font-weight: 300;
  }
  
  #contact-form p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: 0.01rem;
    width: 40vw;
    margin: 0.25rem 0;
  }
  
  #contact-form label, .description {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
  }
  
  #contact-form form {
    position: relative;
    margin-top: 2rem;
    padding: 1rem 0;
  }
  
  #contact-form input, textarea, label {
    width: 40vw;
    display: block;
  }
  
  #contact-form p, placeholder, input, textarea {
    font-family: 'Helvetica Neue', sans-serif;
  }
  
  #contact-form input::placeholder, textarea::placeholder {
    color: var(--primary-color);
  }
  
  #contact-form input, textarea {
    color: var(--primary-color);
    font-weight: 500;
    background: var(--bg-color);
    border: none;
    border-bottom: 1px solid var(--secondary-color);
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    outline: none;
  }
  
  #contact-form textarea {
    resize: none;
  }
  
  #contact-form button {
    text-transform: uppercase;
    font-weight: 300;
    background: var(--button-color);
    color: var(--bg-color);
    width: 10rem;
    height: 2.25rem;
    border: none;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
  }
  
  #contact-form input:hover, textarea:hover, button:hover {
    opacity: 0.5;
  }
  
  #contact-form button:active {
    opacity: 0.8;
  }
  
  /* Toggle Switch */
  
  
  #contact-form #error, #success-msg {
    width: 40vw;
    margin: 0.125rem 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-family: 'Jost';
    color: var(--secondary-color);
    }
  
  
    #contact-form #success-msg {
    transition-delay: 3s;
    }
  
  @media only screen and (max-width: 950px) {
    #contact-form .logo {
      width: 8rem;
    }
    #contact-form h1 {
      font-size: 1.75rem;
    }
    #contact-form p {
      font-size: 0.7rem;
    }
    #contact-form input, textarea, button {
      font-size: 0.8rem;
    }
    #contact-form .description {
      font-size: 0.3rem;
      margin-left: 0.4rem;
    }
    #contact-form button {
      width: 7rem;
    }
    
  
  #contact-form input:checked + .slider:before {
    transform: translateX(16px);
  }
  }


  @media only screen and (max-width: 756px) {
    #contact-form .contact-container {
      flex-direction: column-reverse;
    }

    #contact-form .right-col {
      width: 100vw;
      align-self: center;

    }

    #contact-form .left-col {
      width: 100vw;
    }

    #contact-form input, textarea, label {
      width: 80vw;
    }


  }