@font-face {
  font-family: 'EuclidCircularB';
  src: url("fonts/EuclidCircularB-Light.woff2") format("woff2");
  src: url("fonts/EuclidCircularB-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal
  }
  /* @font-face {
  font-family: 'EuclidCircularB';
  src: url("fonts/EuclidCircularB-Medium.woff2") format("woff2");
  src: url("/fonts/EuclidCircularB-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal
  }
  @font-face {
  font-family: 'EuclidCircularB';
  src: url("/fonts/EuclidCircularB-Semibold.woff2") format("woff2");
  src: url("/fonts/EuclidCircularB-Semibold.woff") format("woff");
  font-weight: bold;
  } */

body {
    margin: 0;
    background-color: #000;
    color: #f4f4f4;
    text-align: center;
    font-family: 'EuclidCircularB', sans-serif;
  }

  .container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  .topHeader{
    p{
        font-size: 15px;
        line-height: 1.6;
        text-transform: uppercase;
        color: #f4f4f4;
        margin: 0;
    }
  }

  .logo{
    width: 300px;
    height: auto;
    margin: 0 auto;
    padding-top: 10px;
  }
  .logo img{
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .meal-plan {
    width: 300px;
    margin: 20px auto;
  }
  .meal-plan img{
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .coming-soon {
    margin-bottom: 10px;
    h5{
        font-size: 20px;
        color: #f4f4f4;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0;
    }
  }
  .registerText {
    margin-bottom: 20px;
    h4{
        font-size: 22px;
        color: #f4f4f4;
        font-weight: 500;
        text-transform: uppercase;
        margin: 0;
    }
  }

  form {
    display: flex;
    flex-direction: column;
  }
  .input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  

  input {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #303030;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
    background-color: #151515;
    color: #f4f4f4;
    font-family: 'EuclidCircularB', sans-serif;
  }
  button{
    font-family: 'EuclidCircularB', sans-serif;
  }
  .error-msg {
    color: red;
    font-size: 13px;
    margin-top: -10px;
    margin-bottom: 10px;
    display: none;
  }
  
    input::placeholder {
        color: #777;                   
        opacity: 1;                    
    }

  input.error {
    border-color: red;
  }
  .bottomText{
    display: flex;
    margin-bottom: 10px;
    span{
        font-size: 13px;
        color: #777;            
    }
  }

  button {
    padding: 15px;
    background-color: #1e8c61;
    color: #f4f4f4;
    font-size: 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    opacity: 0.5;
    width: 35%;
    font-weight: 500;
    margin: 0 auto;
  }

  button.enabled {
    opacity: 1;
    cursor: pointer;
  }

  .images {
    
    gap: 10px;
    margin-top: 20px;
  }

  .images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
  }
  .bottom-logo{
    padding-top: 5px;
    width: 300px;
    height: auto;
    margin: 0 auto;
  }
  .bottom-logo img{
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .thank-you {
    padding: 40px;
    border-radius: 30px;
    background-color: #2a2a2a;
    display: none;
    animation: fadeIn 1s forwards;
    margin-top: 30px;
    margin-bottom: 30px;
    
  }
  .thank-you h4{
        margin: 0 0 15px 0;
        font-size: 22px;
        font-weight: 500;
        text-transform: uppercase;
        line-height: 1.4;
  }
  
 
  

  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
  }


  @media screen and (max-width: 600px) {
    .thank-you{
      width: 80%;
      margin: 30px auto;
      padding: 40px 20px;
    }
    .thank-you h4{
      font-size: 15px;
    }
    form{
      width: 87%;
      margin: 0 auto;
    }
    .logo{
      width: 250px;
    }
    .meal-plan {
      width: 200px;
    }
    .bottom-logo{
      width: 200px;
    }
    button{
      width: 45%;
    }
  }