/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

@import url('https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css');

p.ndf-send-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

button.ndft-btn-send {
    background-color: #2c6e93;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: medium;
    transition: all 0.3s ease-in-out;
}

button.ndft-btn-send:hover {
    opacity: 90%;
}

button.ndft-btn-send:focus {
    background-color: #12425e;
}

button.ndft-btn-send:disabled {
    cursor: not-allowed;
}