.formTimer *{
    box-sizing: border-box;
    font-family: inherit;
}
.formTimer{
    max-width: 600px;
    background-color: #0a0a0a;
    border-radius: 25px;
    padding: 36px 22px;
}
.formTitle{
    color: #fff;
    font-size: 26px;
    line-height: 28px;
    text-align: center;
    margin: 0;
}
.form-img{
    width: 100%;
    border-radius: 25px;
    margin-top: 8px;
}
.formSub{
    font-size: 20px;
    color: #fff;
    text-align: center;
}
#timer{
    color: #0092ed;
    font-weight: 700;
    font-size: 43px;
    margin-top: 0;
}
.formTimer input{
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 17.25px;
    text-align: left;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #cccccc;
    background: #ffffff;
    padding: 10px 12px;
    margin-bottom: 15px;
}
.formTimer button{
    display: block;
    width: 100%;
    color: #fff;
    font-size: 23px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    text-transform: uppercase;
    border: 0;
    border-radius: 10px;
    background: #0612b7;
    padding: 17.5px 0;
    cursor: pointer;
    margin-top: 18px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.formTimer button:hover{
    box-shadow: 0 0 10px #7ed321;
}

/* ===== REGISTRATION FORM (DrTracker) ===== */
.ts-form{
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
}
.ts-form-field{
    margin-bottom: 10px;
}
.ts-form input[type=text],
.ts-form input[type=email],
.ts-form input[type=tel]{
    width: 100%;
    padding: 15px 16px;
    font-size: 16px;
    border: 1.5px solid #d0d7de;
    border-radius: 4px;
    background: #fff;
    color: #222;
    outline: none;
    margin-bottom: 0;
    transition: border-color 0.15s;
}
.ts-form input:focus{ border-color: #0070d6; }
.ts-form input::placeholder{ color: #aab4bb; }

.ts-phone-row{
    display: flex;
    border: 1.5px solid #d0d7de;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.15s;
}
.ts-phone-row:focus-within{ border-color: #0070d6; }
.ts-phone-prefix{
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    background: #f4f6f8;
    border-right: 1.5px solid #d0d7de;
    font-size: 15px;
    color: #333;
    white-space: nowrap;
    flex-shrink: 0;
    height: 52px;
}
.ts-phone-row input{
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    padding: 15px 14px !important;
    outline: none !important;
    height: 52px;
    margin-bottom: 0 !important;
}
.ts-phone-row input:focus{ border: none !important; outline: none !important; }

.ts-field-error{
    color: #ff6b5e;
    font-size: 13px;
    margin-top: 4px;
    min-height: 18px;
    text-align: left;
}

.ts-submit-btn{
    width: 100%;
    padding: 16px;
    background: #0070d6;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 4px;
    letter-spacing: 0.3px;
    text-transform: none;
}
.ts-submit-btn:hover{ background: #005bb5; }
.ts-submit-btn:disabled{ background: #446; cursor: not-allowed; }

@media (max-width: 480px){
    .ts-form{ margin-top: 8px; }
    .ts-form-field{ margin-bottom: 8px; }
    .ts-form input[type=text],
    .ts-form input[type=email],
    .ts-form input[type=tel]{ padding: 13px 12px; font-size: 16px; }
    .ts-phone-prefix{ padding: 0 10px; font-size: 13px; height: 50px; }
    .ts-phone-row input{ height: 50px; }
    .ts-submit-btn{ font-size: 15px; padding: 13px; }
}