/* Reset defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
    overflow: hidden; 
    background-color: #000;
}

/* Background setup with your single image */
.background-container {
    height: 100%;
    width: 100%;
    /* Replace 'your-image.jpg' with your actual image path or URL */
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url('crossfire-saints-logo.PNG') no-repeat center;
    background-size: 75% auto; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Glassmorphism content card */
.content-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 10px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

    display: flex;
    justify-content: center; /* Centers card horizontally */
    align-items: flex-start; /* Aligns card to the very top */
    /* min-height: 10vh;  Keeps parent full-screen if needed */

}

h1 {
    font-size: 1.5rem;
   
    font-weight: 400;
    letter-spacing: -0.5px;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.8);
}

/* Subscription Form Layout */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signup-form input {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: background 0.3s, border-color 0.3s;
}

.signup-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.signup-form input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

.signup-form button {
    padding: 14px;
    background: #ffffff;
    color: #111111;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
}

.signup-form button:hover {
    background: rgba(255, 255, 255, 0.9);
}

.signup-form button:active {
    transform: scale(0.98);
}

/* Responsive design adjustments */
@media (min-width: 480px) {
    .signup-form {
        flex-direction: row;
    }
    
    .signup-form input {
        flex-grow: 1;
    }
    
    .signup-form button {
        padding: 14px 24px;
        white-space: nowrap;
    }
}
