/* Global Styles */
*{
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1d;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px 20px;
    box-sizing: border-box;
    background: radial-gradient(circle, #1a1a1d, #121212);
}

.container {
    background-color: #252529;
    padding: 30px 20px 20px 20px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(75, 0, 130, 0.5), 0 0 15px rgba(0, 0, 255, 0.4);
    max-width: 400px;
    width: 100%;
    border: 1px solid #4b0082;
}

.container:hover {
    transform: scale(1.05);
}

h1, h2 {
    font-family: "Chakra Petch", system-ui;
    text-align: center;
    margin-bottom: 20px;
    /* font-family: 'Orbitron', sans-serif; */
    font-size: 24px;
    color: #e1d4eb;
    text-shadow: 0 0 10px rgba(75, 0, 130, 0.8);
}

label {
    font-family: "Kanit", system-ui;
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #fff;
}

input, textarea, select, button {
    font-family: "Kanit", system-ui;
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 14px;
    background-color: #1f1f23;
    color: #fff;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 255, 0.2);
}

input:focus, textarea:focus, select:focus {
    background-color: #2a2a2f;
    box-shadow: 0 0 15px rgba(75, 0, 130, 0.5);
}

textarea {
    height: 120px;
}

button {
    background-color: #4b0082;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #4b0082;
    margin-top: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 255, 0.5);
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

button:hover {
    background-color: #0311d3;
    box-shadow: 0 0 20px rgba(0, 0, 255, 0.7);
    transform: translateY(-3px);
}

button:active {
    transform: translateY(0);
}

/* Responsive Styles */
@media (min-width: 600px) {
    .container {
        max-width: 600px;
        padding: 30px;
    }

    h1, h2 {
        font-size: 28px;
    }

    label {
        font-size: 16px;
    }

    input, textarea, select, button {
        margin-right: 40px;
        font-size: 16px;
    }

    textarea {
        height: 150px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 800px;
        padding: 40px;
    }

    h1, h2 {
        font-size: 32px;
    }

    label {
        font-size: 18px;
    }

    input, textarea, select, button {
        font-size: 18px;
    }

    textarea {
        height: 200px;
    }
}
