/* Reset base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden; /* prevent scrolling */
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  /* Mobile-first background */
  background: url("../assets/images/sideimg.jpg") no-repeat center center;
  background-size: cover; /* cover entire screen without stretching */
  font-family: "Roboto", sans-serif;
}

.body-wrapper {
  margin-top: 10rem;
  margin-left: 5rem;
}

header .logo img {
  width: 50%;
}
main .page-title {
    margin-top: 4rem;
}
main .page-title h1{
    color:#fff;
    font-size:2rem;
    font-weight:700;
}
#countdown-clock {
    font-size: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    margin: 3rem 0;
  }
  #countdown-clock .time {
    background-color: #f5f5f5;
    color: #000;
    border-radius: 1rem;
    padding: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  #countdown-clock .time > span {
    font-weight: 600;
  }
  #countdown-clock .time small {
    padding-top: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: block;
  }

  #form p {
    color:#999;
    margin:1rem auto;
    font-size:1.1rem;
    
  }
.form-group{
    display:flex;
    flex-direction:row;
}

  .form-group input.form-control {
    width: 20rem;
    height: 3rem;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    padding-left: 20px;
    border: none;
    background: #f5f5f5;
  }


  .form-group button.submit-button {
    padding: 0.9rem 2rem;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    background-color: #0043ee;
    border: none;
    cursor: pointer;
    color: #fff;
  }

  .form-group button.submit-button:hover {
    background-color: #222630;
  }
  .form-group button.submit-button span {
    font-weight: 700;
    padding-left: 5px;
  }

  #footer .social-links {
    padding-top: 3rem ;
    padding-bottom: 0.5rem ;

}
  #footer .social-links ul {
    display: flex;
    list-style: none;
    padding: 0;
  }
  #footer .social-links li {
    padding-right: 1rem;
  }
  #footer .social-links ul a {
    font-size: 1rem;
    color:rgb(71, 93, 133);
    text-decoration: none;
  }
  #footer .social-links ul a:hover {
    color: #111;
  }
  .copyright p {
    color:rgb(71, 93, 133);
    font-size:0.9rem;

  }

/* Tablet Styles - Center Everything */
@media (min-width: 768px) and (max-width: 1024px) {
  
    body {
      background: url("../assets/images/sideimg.jpg") no-repeat center center;
      background-size: contain; /* show full image */
      background-color: #000;   /* fallback for empty space */
      overflow-y: auto; /* allow vertical scroll if content grows */
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
  
    .body-wrapper {
      margin: 0; /* remove margins */
      width: 90%; /* keep some spacing from edges */
      text-align: center;
    }
  
    header .logo img {
      width: 40%; /* smaller logo */
      margin: 0 auto; /* center horizontally */
      display: block;
    }
  
    main .page-title {
      margin-top: 8rem;
    }
  
    main .page-title h1 {
      font-size: 2.4rem;
      color: #fff;
    }
  
    #countdown-clock {
      justify-content: center;
      font-size: 2.2rem;
      margin: 2.5rem auto;
    }
  
    #countdown-clock .time {
      padding: 2rem;
      margin: 1.2rem;
    }
    #countdown-clock .time > span {
        font-weight: 600;
      }
      #countdown-clock .time small {
        padding-top: 1rem;
        font-size: 1rem;
        text-transform: uppercase;
        display: block;
      }
  
      #form {
        margin-top:5rem;

      }

      #form p{
        font-size:1.3rem;
      }
    .form-group {
      justify-content: center;
    }
  
    .form-group input.form-control {
      width: 22rem;
      height: 3.5rem;
      font-size:1.2rem;
    }
  
    .form-group button.submit-button {
      padding: 1rem 2.5rem;
      font-size: 1.4rem;
    }
  
    #footer {
      text-align: center;
    }
  
    #footer .social-links ul {
      justify-content: center;
    }
  
    #footer .social-links ul a {
      font-size: 1.5rem;
    }
  
    .copyright p {
      text-align: center;
      margin-top: 1rem;
      font-size:1.2rem;
    }
  }

  @media (min-width: 1025px) {
    body {
      background-color: #fff; /* left side */
      background-image: url("../assets/images/sideimg.jpg");
      background-repeat: no-repeat;
      background-position: right center;
      background-size: 40% 100%; /* 40% width, full height */
      display: flex;
      justify-content: flex-start;
      align-items: center;
      margin-left:5rem;
    }
    header .logo img {
        content: url("../assets/images/logo-lightmode.svg");
      }
  
    .body-wrapper {
      width: 60%;          /* left 60% for content */
      padding: 5rem;
      text-align: left;
    }
  
    header .logo img {
      width: 40%;
      margin-bottom: 2rem;
    }
  
    main .page-title h1 {
      font-size: 5rem;
      color: #000;
    }
  
    #countdown-clock {
      justify-content: flex-start;
      font-size: 3rem;
      margin: 5rem 0;
    }

    
      #countdown-clock .time {
        padding: 3rem;
        margin: 1.2rem;
      }
      #countdown-clock .time > span {
          font-weight: 700;
        }
        #countdown-clock .time small {
          padding-top: 1.2rem;
          font-size: 1.2rem;
          text-transform: uppercase;
          display: block;
        }
        #form {
            margin-top:5rem;
    
          }
    
          #form p{
            font-size:1.6rem;
          }
    .form-group {
      justify-content: flex-start;
    }
  
    .form-group input.form-control {
      width: 30rem;
      height: 4rem;
      font-size:1.2rem;

    }
  
    .form-group button.submit-button {
      font-size: 1.4rem;
      padding: 1.1rem 3rem;
    }
  
    #footer {
      text-align: left;
      margin-top: 3rem;
    }
  
    #footer .social-links ul {
      justify-content: flex-start;
    }
  
    #footer .social-links ul a {
      font-size: 2rem;
    }
  
    .copyright p {
      text-align: left;
      margin-top: 1rem;
      font-size:1.2rem;
    }
  }
  