/* ==============================
   Nexoro Forms - Modern UI
============================== */

.nexoro-wrapper {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.nexoro-form {
    width: 100%;
    max-width: 650px;
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.nexoro-field {
    margin-bottom: 22px;
}

.nexoro-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}

.nexoro-required {
    color: #b91c1c;
    margin-left: 4px;
}

.nexoro-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.25s ease;
}

.nexoro-input:focus {
    border-color: #b91c1c;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(185,28,28,0.1);
}

textarea.nexoro-input {
    min-height: 120px;
    resize: vertical;
}

.nexoro-button {
    width: 100%;
    background: #b91c1c;
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.nexoro-button:hover {
    background: #991b1b;
    transform: translateY(-2px);
}

.nexoro-button:active {
    transform: translateY(0);
}