/* Basic reset and font styling from your new design */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFBEF; /* Light cream background */
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* Main content container, styled like the white cards */
.container {
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    background-color: #ffffff; /* White card */
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Soft shadow */
}

/* Your logo */
.logo {
    width: 150px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 20px;
}

/* Main headline - Using the orange accent color */
h1 {
    font-size: 3rem; 
    font-weight: 800; /* Bold font from your new design */
    color: #ff9900;  /* Main orange accent */
    margin: 10px 0;
}

/* Subtitle description - using the standard dark text */
.subtitle {
    font-size: 1.15rem;
    color: #555;
    font-weight: 500; /* Medium font weight */
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Footer text */
.footer {
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
}
