/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Poppins:wght@400;500;700&display=swap');

/* Reset Default Margins & Padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #4E25B0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Background Overlay */
.background {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Semi-transparent shape */
.overlay {
    width: 787px;
    height: 485px;
    background: rgba(108, 99, 255, 0.1);
    position: absolute;
}

/* Main Content */
.content {
    position: relative;
    z-index: 10;
}

.logo-container {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.logo {
    width: 500px;  /* Adjust width (try 150px if still too big) */
    height: auto;  /* Maintain aspect ratio */
    max-width: 80%; /* Prevents it from going too big on large screens */
    max-height: 300px; /* Adjust this to fit within the screen */
    display: block;
    margin: 0 auto;
    object-fit: contain; /* Ensures the image doesn't stretch */
}


/* Subtitle */
.subtitle {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.32px;
    color: white;
    margin-top: 10px;
}

/* Description */
.description {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: white;
    margin-top: 10px;
}

/* Form */
form {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Input Field */
input {
    padding: 12px;
    font-size: 16px;
    width: 250px;
    border-radius: 12px 0 0 12px;
    border: 1px solid #E0E0E0;
    outline: none;
}

/* Subscribe Button */
button {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    background: #6C63FF;
    color: white;
    border: none;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #554ce6;
}

/* Success Message */
.success {
    margin-top: 10px;
    font-size: 16px;
    color: lightgreen;
}