* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.hero {
    width: 100%;
    min-height: 100vh;
    background-image: url(images/background.jpeg);
    background-position: center;
    background-size: cover;
    padding: 10px 8%;
    text-align: center;
    color: #f4f2f2;
}

nav {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: transparent;
    justify-content: space-between;
}

.logo {
    width: 140px;
    cursor: pointer;
    background: transparent; /* Remove white background */
}

.btn {
    background: linear-gradient(#6a33ff, #351a80);
    color: #fff;
    font-size: 16px;
    padding: 20px 40px;
    border-radius: 30px;
    border: 0; /* Remove border */
    outline: 0;
    cursor: pointer;
}

.content {
    margin: 15% 0 0; /* Adjust the left margin */
    text-align: left; /* Align text to the left */
}

.content h1 {
    font-size: 45px;
    font-weight: 300;
    margin-right: -50px; /* Adjust margin */
}

.content h1 span {
    font-weight: 700;
}

form{
    width: 90%;
    max-width: 550px;
    height: 65px;
    background: #fff;
    margin: 20px 20px;
    padding: 20px;
    display: flex;
    
    align-items: center;
    border-radius: 40px;
    margin-top: 40px;
    margin-bottom: 20px;
    
}
form input{
    flex: 1;
    
    padding: 20px 30px;
    font-size: 16px;
    border: 0;
    outline: 0;
    background:transparent;
    margin-right: 50px;

}
form .btn{
    padding: 0;
    width: 300px;
    height: 65px;
    border-radius: 60px;
    
    

}
form input::placeholder{
    font-size: 16px;
} 