@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&display=swap");

:root {
    --bg: #363fff;
    --bg2: #3138c6;
    --title: #293245;
    --secondary-light: rgb(34, 124, 112, 0.2);
    --secondary-light-2: rgb(127, 183, 126, 0.1);
    --white: #fff;
    --black: #393e46;
    --green: #00FF96;
    --blue: #00A2FF;

    --shadow: 0px 2px 8px 0px var(--secondary-light);
}

*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Contact Section */
section.contact {
    padding: 210px 10% 19px 10%;
    background: linear-gradient(180deg, #124559, #16184f);
    color: var(--white);
    text-align: center;
}

.contact-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 162, 255, 0.3);
}

section.contact p{
    font-size: 20px;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    gap: 20px;
}

.input-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

label {
    font-weight: 500;
    color: white;
}

input, textarea {
    padding: 10px;
    border: none;
    border-radius: 10px;
    color: black;
    outline: none;
    box-shadow: var(--shadow);
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

textarea {
    resize: none;
}

.cta-button {
    color: var(--black);
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .contact-container {
        padding: 20px;
    }
}
