* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #000, #0b0b0b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* ===============================Container=============================== */
.contact-container {
    width: 100%;
    max-width: 420px;
    background: #0e0e0e;
    padding: 40px 35px;
    border-radius: 18px;
    box-shadow: 0 0 40px rgba(0, 188, 212, 0.15);
}

/* ===============================Title=============================== */
.contact-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    letter-spacing: 2px;
    color: #00bcd4;
    text-transform: capitalize;
}

/* ===============================Form=============================== */
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ===============================Inputs=============================== */
#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #222;
    background: #111;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

#contactForm textarea {
    resize: none;
    height: 120px;
}

/* ===============================Focus=============================== */
#contactForm input:focus,
#contactForm textarea:focus {
    border-color: #00bcd4;
    box-shadow: 0 0 8px rgba(0, 188, 212, 0.4);
}

/* ===============================Button=============================== */
#contactForm button {
    margin-top: 10px;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: #00bcd4;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

#contactForm button:hover {
    background: #fff;
}

/* ===============================Result message=============================== */
#result {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #00bcd4;
}

/* ===============================Responsive=============================== */
@media (max-width: 480px) {
    .contact-container {
        padding: 30px 25px;
    }

    .contact-container h2 {
        font-size: 24px;
    }
}