* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
    height: 100%;
    overflow: hidden;
}

/* The background image we generated */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-image.jpg') no-repeat center center/cover;
    z-index: -2;
}

/* Dark overlay for readability */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust 0.5 for more/less darkness */
    z-index: -1;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.logo {
    font-size: 2.5rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.logo span {
    font-weight: 300;
    opacity: 0.7;
}

h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.signup-form input {
    padding: 15px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
    width: 250px;
}

.signup-form button {
    padding: 15px 30px;
    font-size: 1rem;
    background-color: #ff4b2b; /* Change this to match a color in your image! */
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: 0.3s;
}

.signup-form button:hover {
    background-color: #ff416c;
}

