/* FORMULÁRIO */

#mobike-form {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.mobike-field {
    display: flex;
    flex-direction: column;
}

.mobike-field label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.mobike-field input {
    width: 100%;
    height: 48px;
    padding: 12px 15px;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    background: #fff;
    font-size: 14px;
    color: #444;
    box-sizing: border-box;
}

.mobike-field input::placeholder {
    color: #bdbdbd;
}

.mobike-field input:focus {
    outline: none;
    border-color: #c5c5c5;
}

/* BOTÃO */

.mobike-btn {
    background: #25D366 !important;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700 !important;
    cursor: pointer;
    transition: .2s;
    border-color: #80B142 !important;
    color: white !important;
    margin-top: 18px;
}

.mobike-btn:hover {
    background: #a8f14f;
}

/* RESULTADO */

#mobike-resultado {
    margin-top: 20px;
}

.mobike-success {
    margin-bottom: 12px;
    font-size: 14px;
    color: #28a745;
    font-weight: 600;
}

.mobike-link-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobike-link-box input {
    width: 100%;
    height: 48px;
    padding: 12px 15px;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
}

.mobike-copy-btn,
.mobike-open-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 3px;
    background: #baff5a !important;
    color: #444 !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s;
}

.mobike-copy-btn:hover,
.mobike-open-btn:hover {
    background: #a8f14f;
}

/* RESPONSIVO */

@media (max-width: 768px) {

    .mobike-field input,
    .mobike-btn,
    .mobike-copy-btn,
    .mobike-open-btn {
        width: 100%;
    }

}