/* ==========================================================================
   Evoltex WhatsApp Login -- V5 -- Integrated Alternative
   ========================================================================== */

/* --- Main WhatsApp Login Container --- */
#evoltex-whatsapp-login-app {
    padding: 2.5em;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin: 2em auto 0;
    max-width: 520px;
}

/* --- Typography --- */
#evoltex-whatsapp-login-app .whatsapp-login-title {
    font-size: 1.75em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1em;
    color: #2c3e50;
}

#evoltex-whatsapp-login-app .whatsapp-login-subtitle {
    font-size: 1em;
    color: #5a6a7b;
    margin-bottom: 2em;
    text-align: center;
}

/* --- Form Elements --- */
#evoltex-whatsapp-login-app .input-text {
    display: block;
    width: 100%;
    padding: 12px !important;
    font-size: 1em !important;
    line-height: 1.5 !important;
    color: #333 !important;
    background-color: #fdfdfd !important;
    border: 1px solid #ccc !important;
    border-radius: 8px !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#evoltex-whatsapp-login-app .input-text:focus {
    border-color: #8dc63f !important;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(141, 198, 63, 0.25) !important;
}

#evoltex-whatsapp-login-app .button {
    width: 100%;
    padding: 0.8em !important;
    font-size: 1.1em !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    background-color: #8dc63f !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 1em;
}

/* --- WhatsApp Pane Specifics --- */
#evoltex-whatsapp-login-app .evoltex-input-type-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1.5em;
}

#evoltex-whatsapp-login-app .evoltex-input-type-selector a {
    padding: 0.5em;
    text-decoration: none;
    color: #5a6a7b;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-bottom-color 0.2s;
}

#evoltex-whatsapp-login-app .evoltex-input-type-selector a.active {
    color: #333;
    border-bottom-color: #8dc63f;
}

#evoltex-whatsapp-login-app .evoltex-code-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 2em 0;
}

#evoltex-whatsapp-login-app .evoltex-code-input {
    width: 48px !important;
    height: 48px !important;
    text-align: center !important;
    font-size: 1.5em !important;
}

/* --- Trigger Button --- */
.evoltex-whatsapp-trigger {
    margin-top: 1.5em;
    padding-top: 1.5em;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.evoltex-whatsapp-trigger a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    background-color: #25D366 !important; /* Official WhatsApp Green */
}

.evoltex-whatsapp-trigger a.button:hover {
    background-color: #1DA851 !important;
}


/* --- Back Link --- */
.evoltex-back-to-login {
    text-align: center;
    margin-top: 2em;
}

.evoltex-back-to-login a {
    color: #5a6a7b;
    text-decoration: none;
    font-size: 0.9em;
}