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

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #f7fbff, #eaf1f7);
    color: #142638;
}

/* Main page wrapper */
.container {
    min-height: 100vh;
    width: 100%;
    padding: 40px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* Logo */
.logo {
    width: min(90vw, 650px);
    height: auto;
    margin-bottom: 35px;
}

#logo {
    border-radius: 3%;
}

/* Coming soon text */
h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #142638;
    margin-bottom: 18px;
}

.tagline {
    max-width: 600px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #4f6072;
}

/* Contact form wrapper */
.form-container {
    width: min(90vw, 650px);
    margin-top: 3rem;
}

/* Form */
#contactform {
    width: 100%;
}

/* Each input group */
.input-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Labels */
.form-label {
    color: #4f6072;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

/* Text inputs and message box */
.form-input,
.message-input {
    width: 100%;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    color: #142638;
    background: #ffffff;
    outline: none;
}

.form-input:focus,
.message-input:focus {
    border-color: #00bfae;
    box-shadow: 0 0 0 4px rgba(0, 191, 174, 0.15);
}

.message-input {
    height: 180px;
    resize: vertical;
}

/* Submit button area */
.submit-button {
    width: 100%;
    margin-bottom: 2rem;
}

.submit {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #0068d9, #00bfae);
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 8px;
}

.submit:hover {
    cursor: pointer;
    filter: brightness(0.95);
}

/* Mobile spacing */
@media (max-width: 600px) {
    .container {
        padding: 30px 16px;
    }

    .logo {
        margin-bottom: 28px;
    }

    .form-container {
        margin-top: 2rem;
    }

    .message-input {
        height: 150px;
    }
}