* {
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    user-select: none;
}

body {
    background: #222222;
    min-height: 100vh;
    font-family: 'Inter', 'Lato', sans-serif;
    overflow: hidden;
}

.main-container {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 0 0;
}

.info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45vw;
    min-width: 350px;
    height: 100vh;
    background: #222222;
    margin-right: 0;
    margin-left: 0;
    padding: 40px;
    box-sizing: border-box;
}

.form-container {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 8px 32px 0 rgba(34, 34, 34, 0.15);
    padding: 40px 50px;
    width: 55vw;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    margin-right: 0;
    height: 100vh;
    justify-content: space-around;
}

form#contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    font-family: 'Rowdies', sans-serif;
    font-size: 2.1rem;
    color: #222222;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(34, 34, 34, 0.1);
    flex-shrink: 0;
}

input[type="text"], select {
    width: 90%;
    padding: 14px 18px;
    margin: 18px 0 0 0;
    border: none;
    border-radius: 12px;
    background: #f8f8f8;
    font-size: 1.08rem;
    color: #222222;
    font-family: 'Inter', 'Lato', sans-serif;
    box-shadow: 0 2px 8px 0 rgba(34, 34, 34, 0.07);
    transition: border 0.2s;
    border: 2px solid transparent;
    box-sizing: border-box;
    outline: none;
}

input[type="text"]:focus, select:focus {
    border: 2px solid #555555;
    background: #f0f0f0;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 8L10 13L15 8' stroke='%23222222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1.2em center;
    background-size: 1.2em;
    width: 90%;
}

button[type="submit"] {
    width: 90%;
    padding: 15px 0;
    background: linear-gradient(90deg, #222222 0%, #444444 100%);
    color: #fff;
    font-size: 1.15rem;
    font-family: 'Rowdies', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 0;
    box-shadow: 0 4px 16px 0 rgba(34, 34, 34, 0.13);
    letter-spacing: 1px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

button[type="submit"]:hover {
    background: linear-gradient(90deg, #333333 0%, #555555 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px 0 rgba(34, 34, 34, 0.18);
}

::placeholder {
    color: #888888;
    opacity: 1;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

#loading-icon {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    z-index: 9999;
    color: #222222;
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 4px 24px 0 rgba(34, 34, 34, 0.18);
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: 100vh;
        min-height: 100vh;
        overflow: hidden;
    }
    .info-panel {
        display: none;
    }
    .form-container {
        border-radius: 0;
        margin: 0;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        height: 100vh;
        justify-content: space-around;
        padding: 40px 20px;
        box-shadow: none;
        overflow: hidden;
    }
    body {
        background: #fff;
        overflow: hidden;
    }
}

@media (max-width: 600px) {
    .form-container {
        padding: 30px 15px;
    }
    h2 {
        font-size: 1.6rem;
        margin-bottom: 0;
    }
    input[type="text"], select, button[type="submit"] {
        font-size: 1rem;
        padding: 12px 10px;
    }
}