/* Make the page fill the entire screen */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: Georgia, serif;
}

/* Remove padding and margin from all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background image styling */
.background {
    background-image: url('PurpleBinary.png'); /*file is in folder*/
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative; /* Allows overlay and centered content */
}

/* Overlay behind the text */
.overlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Wrapper for moving all content down (up in this case) */
.content-wrapper {
    position: relative;
    top: 10px; /* Moves all content up by 50 pixels*/
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title styling */
.title {
    color: rgb(202, 170, 233);
    font-size: 9.5em;
    font-weight: bold;
    margin-bottom: 10px; 
    transform: scaley(1.15);
}

/* Subtitle styling for 'COMING SOON...' */
.subtitle {
    color: rgb(202, 170, 233);
    font-size: 2.5em;
    font-style: italic;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-bottom: 15px; /* Adds padding below the subtitle text only */
    text-align: center; /* Center the text */
    width: 100%; /* Full width to ensure proper centering */
}

/* Form styling */
form {
    background-color: rgba(255, 255, 255, 0.69); /* transparent background to blend in better */
    padding: 15px; /* Padding inside form */
    width: 550px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 25px; /* rounded corners to the form */
    margin-top: 30px; /* spacing above the form */
}

/* Form header styling */
form h2 {
    font-family: 'Courier New', Courier, monospace;
    color: rgb(24, 24, 24);
    font-weight: normal;
    font-size: 2em;
    transform: scalex(1.10);
    margin-top: 15px;
    margin-bottom: 20px; /* Space between the header and inputs */
}

input[type=text],
input[type=email],
input[type=submit] {
    font-family: 'Courier New', Courier, monospace;
    width: 100%;
    padding: 10px; /* Adjust padding to keep uniformity */
    margin: 5px;
    border: 1px solid #e7e7e7;
    background-color: rgba(255, 255, 255, 0.556);
    box-sizing: border-box;
    border-radius: 20px; /* rounded corners to all input fields */
}

input[type=submit] {
    background-color: rgb(182, 154, 211);
    color: rgb(0, 0, 0);
    border: none;
    cursor: pointer;
    border-radius: 40px; /* Add rounded corners to the submit button */
    width: 150px;
}

input[type=submit]:hover {
    opacity: 0.8;
}

/* Image styling */
.logo {
    width: 200px;
    height: 200px;
}
