.team-registration-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
}

.team-registration-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-registration-form h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
}

.team-registration-form .subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.team-registration-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.team-registration-form button:hover {
    transform: translateY(-2px);
}

.team-registration-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.success-message {
    background: #27ae60;
    color: white;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.error-message {
    background: #e74c3c;
    color: white;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}