/* =====================================================
   Digital Login Button
   public/site/assets/css/digital-login-btn.css
   Mövcud form.css-ə əlavə olaraq qoş, heç nəyi dəyişmə.
   ===================================================== */

/* --- Divider --- */
.dl-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 16px;
}

.dl-divider-line {
    flex: 1;
    height: 1px;
    background: #ebebeb;
}

.dl-divider-text {
    font-size: 12px;
    color: #ccc;
    white-space: nowrap;
}

/* --- Button --- */
.dl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 52px;
    padding: 0 20px;
    background: #ffffff;
    border: 1.5px solid #e2e2e2;
    border-radius: 40px; /* login100-form-btn ilə eyni pill forma */
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.dl-btn:hover {
    border-color: #bbb;
    background: #fafafa;
}

.dl-btn:active {
    transform: scale(0.99);
}

/* --- Logo: "digital." + "login" --- */
.dl-logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex-shrink: 0;
    line-height: 1;
}

.dl-logo-line {
    font-size: 11.5px;
    font-weight: 900;
    color: #111111;
    letter-spacing: -0.03em;
    line-height: 1.15;
    font-family: 'Arial Black', 'Arial', sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 1px;
}

/* Mavi nöqtə */
.dl-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #1A6BF5;
    border-radius: 50%;
    margin-left: 2px;
    margin-top: 1.5px;
    flex-shrink: 0;
}

/* --- Separator --- */
.dl-sep {
    width: 1px;
    height: 26px;
    background: #e2e2e2;
    flex-shrink: 0;
}

/* --- Text --- */
.dl-text-main {
    font-size: 13px;
    font-weight: 600;
    color: #333333;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

/* --- Arrow --- */
.dl-arrow {
    color: #cccccc;
    flex-shrink: 0;
    margin-left: auto;
    transition: color 0.15s, transform 0.15s;
}

.dl-btn:hover .dl-arrow {
    color: #999;
    transform: translateX(2px);
}
