/* Conteneur du formulaire */
.newsletter-form {
	margin-top: 30px;
	width: 80%;
}

.nlm-subscribe {
    max-width: 520px;
    background: #39506b;
    /*border: 1px solid #e2e8f0;*/
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.nlm-subscribe .nlm-message {
	margin-bottom: 15px;
}

/* Champs */
.nlm-subscribe-form .nlm-field {
    margin-bottom: 20px;
}

.nlm-subscribe-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffffff; /* slate-700 */
}

.nlm-subscribe-form input[type="text"],
.nlm-subscribe-form input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1; /* slate-300 */
    border-radius: 6px;
    background: #fff;
    color: #0f172a; /* slate-900 */
    font: inherit;
    transition: border-color .15s ease, box-shadow .15s ease;
    box-sizing: border-box;
}

.nlm-subscribe-form input[type="text"]:focus,
.nlm-subscribe-form input[type="email"]:focus {
    outline: none;
    border-color: #60a5fa; /* blue-400 */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .15); /* blue-500/15% */
}

/* Bouton */
.nlm-subscribe-form .nlm-actions {
    margin-top: 8px;
}

.nlm-subscribe-form .nlm-submit,
.nlm-subscribe-form button[type="submit"] {
    display: inline-block;
    padding: 10px 16px;
    border: 2px solid transparent;
    border-radius: 6px;
    background-color: #1f2e4e; /* blue-700 */
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .15s ease, transform .02s ease;
}

.nlm-subscribe-form .nlm-submit:hover,
.nlm-subscribe-form button[type="submit"]:hover {
    background-color: #2f467a; /* blue-800 */
	border-color: #32518a;
}

.nlm-subscribe-form .nlm-submit:active,
.nlm-subscribe-form button[type="submit"]:active {
    transform: translateY(1px);
}

.nlm-subscribe-form .nlm-submit[disabled],
.nlm-subscribe-form button[type="submit"][disabled] {
    opacity: .7;
    cursor: not-allowed;
}

/* Message */
.nlm-subscribe-form .nlm-message {
    margin-top: 10px;
	padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #f8fafc; /* slate-50 */
    color: #0a7f00; /* succès par défaut; la couleur peut être surchargée en inline par le JS */
    font-size: 14px;
}

/* Petits écrans */
@media (max-width: 480px) {
    .nlm-subscribe {
        padding: 12px;
        border-radius: 6px;
    }
    .nlm-subscribe-form .nlm-submit,
    .nlm-subscribe-form button[type="submit"] {
        width: 100%;
    }
}
