.nlde-form-wrap {
    max-width: 480px;
    margin: 0 auto;
}
.nlde-signup-form {
    position: relative;
}
.nlde-field {
    margin-bottom: 12px;
}
.nlde-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.nlde-input:focus {
    border-color: #0d7377;
    outline: none;
}
.nlde-submit {
    width: 100%;
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #0d7377;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}
.nlde-submit:hover {
    background: #095456;
}
.nlde-submit:disabled {
    background: #999;
    cursor: not-allowed;
}
.nlde-message {
    margin-top: 10px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}
.nlde-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.nlde-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.nlde-privacy {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}
