body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f4f4f9, #e0e0e5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

header {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
}

header img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f384c;
    margin: 0;
}

#loading-text {
    font-size: 3rem;
    color: #333;
    text-align: center;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

.lead-form-container {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
}

.lead-form-container p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.lead-form-container input {
    font-family: 'Roboto', sans-serif;
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    outline: none;
}

.lead-form-container input:focus {
    border-color: #666;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.lead-form-container button {
    font-family: 'Roboto', sans-serif;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #0f384c;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.lead-form-container button:hover {
    background-color: #0c2c3d;
}

.message {
    font-size: 1rem;
    color: #333;
    margin-top: 10px;
}

.message.success {
    color: green;
}

.message.error {
    color: red;
}

.message.invalid {
    color: orange;
}