/* Developer Team Tracker - Frontend Form */

.dtt-form-wrap {
    max-width: 440px;
    margin: 20px auto;
    padding: 32px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.dtt-team-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 4px 14px;
    background: #2271b1;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.dtt-form .dtt-field {
    margin-bottom: 18px;
}

.dtt-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.dtt-form input[type="text"],
.dtt-form input[type="tel"] {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.dtt-form input:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34,113,177,0.15);
}

.dtt-submit {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #2271b1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.dtt-submit:hover {
    background: #135e96;
}

.dtt-submit:disabled {
    background: #a7aaad;
    cursor: not-allowed;
}

.dtt-form-msg {
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
}

.dtt-form-msg.success {
    display: block;
    background: #edfaef;
    color: #00a32a;
    border: 1px solid #00a32a;
}

.dtt-form-msg.error {
    display: block;
    background: #fce8e8;
    color: #d63638;
    border: 1px solid #d63638;
}
