/**
Theme Name: Be Next
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: be-next
Template: astra
*/

/* ===============================
   CONTACT FORM – EXTENSIONS
================================ */

/* Contact form wrapper (optional, future-proofing) */
.nestpay-contact-form-wrapper {
    width: 100%;
}

.nestpay-contact-container{
	max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(135deg, #000000 0%, #ff0000 100%);
    border: 1px solid #000000; /* changed to 1px */
    font-family: 'Days One', sans-serif;
    color: #ffffff; /* Default text white for contrast */
}

.nestpay-contact-container h2{
	text-align: center;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff; /* white for title */
}

.nestpay-contact-container p{
	text-align: center;
	margin-bottom: 40px;
}

.nestpay-contact-form-group {
    margin-bottom: 24px;
}

.nestpay-contact-form-group label{
	display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 100;
    letter-spacing: 0.8px;
    color: #ffffff; /* white labels for contrast */
}

/* -------------------------------
   INPUTS, SELECTS, TEXTAREAS
-------------------------------- */
.nestpay-contact-form-group input,
.nestpay-contact-form-group select,
.nestpay-contact-form-group textarea {
    width: 100%;
    padding: 0 12px 0 12px;
    border: 1px solid #ffffff; /* changed to 1px */
    font-size: 15px;
    font-weight: 100;
    background-color: #ffffff; /* white background */
    color: #000000; /* black text for readability */
    font-family: 'Days One', sans-serif;
    box-sizing: border-box;
    border-radius: 0;
}

/* Placeholder text */
.nestpay-contact-form-group input::placeholder,
.nestpay-contact-form-group textarea::placeholder {
    font-weight: 100;
    color: rgba(0,0,0,0.5); /* black with 50% opacity */
}

/* -------------------------------
   INPUT STATES (all inputs)
-------------------------------- */
.nestpay-contact-form-group input,
.nestpay-contact-form-group textarea,
.nestpay-contact-form-group select,
.nestpay-contact-form-group input[type="text"],
.nestpay-contact-form-group input[type="email"],
.nestpay-contact-form-group input[type="number"],
.nestpay-contact-form-group input[type="tel"],
.nestpay-contact-form-group input[type="password"],
.nestpay-contact-form-group input[type="url"],
.nestpay-contact-form-group input[type="date"],
.nestpay-contact-form-group input[type="datetime-local"],
.nestpay-contact-form-group input[type="time"],
.nestpay-contact-form-group input[type="month"],
.nestpay-contact-form-group input[type="week"],
.nestpay-contact-form-group input[type="color"],
.nestpay-contact-form-group input:focus,
.nestpay-contact-form-group textarea:focus,
.nestpay-contact-form-group select:focus,
.nestpay-contact-form-group input:hover,
.nestpay-contact-form-group textarea:hover,
.nestpay-contact-form-group select:hover,
.nestpay-contact-form-group input:active,
.nestpay-contact-form-group textarea:active,
.nestpay-contact-form-group select:active {
    outline: none;
    border-color: #ff0000;
}

/* -------------------------------
   SUBMIT BUTTON
-------------------------------- */
.nestpay-contact-submit-btn {
    margin-top: 10px;
    width: 100%;
    padding: 16px;
    background: #ff0000;
    color: #ffffff;
    border: 1px solid #ffffff; /* changed to 1px */
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'Days One', sans-serif;
    border-radius: 0;
    transition: all 500ms;
}

.nestpay-contact-submit-btn:hover {
    background: #fff;
    color: red;
    border-color: #fff;
}

/* Contact message (success / error) */
.nestpay-contact-message {
    margin-bottom: 24px;
    padding: 14px 16px;
    border: 1px solid #ffffff;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 100;
    text-align: center;
    display: none;
}

/* Success message */
.nestpay-contact-message.success {
    background: #198754;
    color: #ffffff;
    border-color: #ffffff;
}

/* Error message */
.nestpay-contact-message.error {
    background: rgba(255, 0, 0, 0.15);
    color: #ffffff;
    border-color: #ff0000;
}

/* Textarea specific tweaks */
.nestpay-contact-form-group textarea {
    padding: 12px;
    resize: vertical;
    min-height: 140px;
}

/* Disabled submit button (sending state) */
.nestpay-submit-btn:disabled {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
    cursor: not-allowed;
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
	.nestpay-contact-container{
		padding: 40px 20px;
	}
}