.team-reg {
    max-width: 1120px;
    margin: 0 auto;
    color: #111;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
}

.team-reg h1,
.team-reg h2,
.team-reg h3 {
    color: #111;
}

.team-reg .step-card {
    border: 1px solid #ddd;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
}

.team-reg .step-header {
    background: #cc0000;
    color: #fff;
    padding: .8rem 1rem;
    font-weight: 700;
}

.team-reg .step-body {
    padding: 1rem;
}

.team-reg .form-row {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 1rem;
    padding: .5rem 0;
    align-items: start;
}

.team-reg label {
    font-weight: 700;
}

.team-reg input[type="text"],
.team-reg input[type="date"],
.team-reg input[type="number"],
.team-reg textarea,
.team-reg select {
    width: 100%;
    max-width: 640px;
    border: 1px solid #aaa;
    border-radius: .35rem;
    padding: .4rem;
}

.team-reg table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: .75rem;
}

.team-reg th {
    background: #1a1a1a;
    color: #fff;
    text-align: left;
    padding: .5rem;
}

.team-reg td {
    border-bottom: 1px solid #eee;
    padding: .45rem;
    vertical-align: top;
}

.team-reg tr:nth-child(even) td {
    background: #f8f8f8;
}

.team-reg .actions {
    text-align: center;
    margin-top: 1rem;
}

.team-reg .btn-red {
    background: #cc0000;
    color: #fff;
    border: none;
    border-radius: .45rem;
    padding: .55rem 1rem;
    font-weight: 700;
}

.team-reg .message {
    padding: .75rem 1rem;
    border-radius: .5rem;
    background: #d1e7dd;
    color: #0f5132;
    margin-bottom: 1rem;
}

.team-reg .error {
    padding: .75rem 1rem;
    border-radius: .5rem;
    background: #f8d7da;
    color: #842029;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .team-reg .form-row {
        grid-template-columns: 1fr;
    }
}
