@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

:root {
  --Red: hsl(0, 100%, 74%);
  --Green: hsl(154, 59%, 51%);
  --Blue: hsl(248, 32%, 49%);
  --Dark-Blue: hsl(249, 10%, 26%);
  --Grayish-Blue: hsl(246, 25%, 77%);
  --font-family: "Poppins", sans-serif;
}
body {
  background-color: var(--Red);
  background-image: url(assets/Image20250924204905.png);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}
form {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 400px;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
}
#sevendays {
  background-color: var(--Blue);
  border: none;
  border-radius: 10px;
  height: 50px;
  width: 500px;
  margin-bottom: 10px;
  color: white;
}
input {
  width: 100%;
  height: 50px;
  margin-top: 15px;
  border: 1px solid;
  border-radius: 5px;
  color: var(--Grayish-Blue);
  padding-left: 30px;
  font-weight: 500;
}
h5 {
  font-size: 10px;
  font-weight: 400;
  color: var(--Grayish-Blue);
}
#span-2 {
  color: var(--Red);
  font-weight: 700;
}
#span-1 {
  color: white;
  font-weight: 700;
}
main {
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction: column; */
  /* border: white 5px solid; */
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
}
#trial {
  border: none;
  background-color: var(--Green);
  color: white;
  padding: 15px 70px;
  border-radius: 5px;
  margin-top: 20px;
  width: 100%;
}
h2,
p,
button,
input,
h5 {
  font-family: var(--font-family);
}
.learn {
  color: white;
}
h2 {
  font-size: 48px;
}
#section-1 {
  color: white;
}
@media (max-width: 575px) {
  body {
    /* width: 100vh; */
    overflow-x: hidden;    
  }
  main {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  form {
    width: 300px;
    height: 430px;
  }
  #sevendays {
    width: 300px;
    height: 55px;
  }

  #section-1 {
    /* margin-left: 230px; */
    width: 300px; 
    padding-bottom: 60px;
    padding-top: 60px;
  }
  p {
    font-size: 14px;
    /* padding-bottom: 30px;
    padding-top: 5px; */ 
}
  h2 {
    font-size: 29px;
    /* padding-top: 40px; */
  }
  
}
