.esport-form {
    background: #181a1b;
    border-radius: 16px;
    padding: 2.2rem 2rem 1.5rem 2rem;
    box-shadow: 0 4px 24px #000a 0.1;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.esport-form label {
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #2563eb;
}

.esport-form input,
.esport-form select,
.esport-form textarea {
    padding: 0.7rem 1rem;
    border-radius: 8px;
    border: 1px solid #333;
    background: #222;
    color: #fff;
    font-size: 1.1rem;
    font-family: inherit;
    transition: border 0.2s;
}

.esport-form input:focus,
.esport-form select:focus,
.esport-form textarea:focus {
    border: 1.5px solid #2563eb;
    outline: none;
}

.esport-form textarea {
    resize: vertical;
    min-height: 60px;
    max-height: 200px;
}

body.light-mode .esport-form {
    background: #fff;
    box-shadow: 0 4px 24px #0001 0.1;
}

body.light-mode .esport-form label {
    color: #0099ff;
}

body.light-mode .esport-form input,
body.light-mode .esport-form select,
body.light-mode .esport-form textarea {
    background: #f6f6f8;
    color: #181818;
    border: 1px solid #bbb;
}

.btn-main {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    background: #2563eb;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 12px #0002;
    margin-top: 1.5rem;
}

.btn-main:hover,
.btn-main:focus {
    background: #1a47b8;
    color: #fff;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

section.fade-in {
    max-width: 100vw;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 600px) {
    .esport-form {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        font-size: 1rem;
    }
    .esport-form label {
        font-size: 1rem;
    }
    .btn-main {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
}