/* Importing Poppins Font */
@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');

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }

/* Body Style */
body {
    font-family: Arial, sans-serif;
    background-color: #f7fff7;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}


.text-wrap {
    width: 50%;
    text-align: start;
    margin-top: -50px;
}

.you {
    font-size: 25px;
    color: #343434;
    
}

.highlight{
    color: #FFBC5A;
}

.text-wrap p {
    width: 100%;
    line-height: 1.6;
}

.img-wrap {
    width: 50%;
    display: flex;
    justify-content: center;
}

.img-wrap img {
    width: 60%;
    height: auto;
    color: #f7fff7;
}

h1, h2 {
    color: #2f3061;
}

.subscribe-form {
    display: flex;
    flex-direction: row; /* Ensure input and button are on the same line */
    /* justify-content: center;
    align-items:  */
   
}

.subscribe-form input[type="email"] {
    padding: 10px;
    width: 350px; /* Ensure a fixed width */
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.subscribe-form button {
    padding: 10px;
    width: 100px;
    background-color: #2f3061;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscribe-form button:hover {
    background-color: #6ca6c1;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
        padding-left: 20px;
        padding-right: 20px;
        margin: 0;
        justify-content: flex-start;
    }

    .img-wrap {
        width: 100%;
        height: 30vh;
        margin: 0;
        justify-content: center;
    }

    .img-wrap img {
        height: 32vh;
    }

    .text-wrap {
        width: 80%;
        text-align: center;
    }

    .text-wrap h2{
        font-size: 23px;
    }

    .you {
        font-size: 16px;
    }

    .subscribe-form {
        flex-direction: column; /* Stack form elements in mobile */
        justify-content: center;
        align-items: center;
    }

    .subscribe-form input[type="email"] {
        width: 95%;
        margin-bottom: 10px;
        border-radius: 5px;
    }

    .subscribe-form button {
        width: 100%;
        border-radius: 5px;
    }
}
