.Paperform__Question {border-radius: 20px;
background: #feffff;
box-shadow:  10px 20px 40px #d5d6d6,
             -20px -20px 40px #ffffff;;
}

.Paperform__Question {
  margin-bottom: 7px; /* Adjust this value to increase or decrease space */
}

.Paperform__Question {
margin-right: 7px; /* Adds space to the right of each question */
}
/* General Form Background */
body {
    background: linear-gradient(to bottom, #ffffff, #ffffff);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
}

/* Form Container */
.paperform-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 30px auto;
}

/* Question Container */
.paperform-question {
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Hover Effect on Questions */
.paperform-question:hover {
    background: linear-gradient(to bottom, #f8f8f8, #ececec);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Active Question (When Focused or Answering) */
.paperform-question-active {
    border-color: #007aff;
    background: linear-gradient(to bottom, #ffffff, #f0f8ff);
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.2);
}

/* Question Label */
.paperform-question-label {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
    text-shadow: 0 1px 0 #ffffff;
}

/* Required Asterisk */
.paperform-question-label .required-asterisk {
    color: #ff3b30;
    font-weight: bold;
}

/* Input Fields */
input[type="text"], input[type="email"], input[type="number"], textarea, select {
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
    border: 1px solid #cccccc;
    border-radius: 12px;
    padding: 12px;
    font-size: 16px;
    color: #333333;
    width: 100%;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* Focused Input Fields */
input:focus, textarea:focus, select:focus {
    border: 1px solid #007aff;
    box-shadow: 0 0 5px rgba(0, 122, 255, 0.5);
    outline: none;
}

/* Submit Button */
.paperform-button {
    background: linear-gradient(to bottom, #007aff, #005bb5);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect for Buttons */
.paperform-button:hover {
    background: linear-gradient(to bottom, #005bb5, #004080);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Active Button State */
.paperform-button:active {
    background: #004080;
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
}

/* Accessibility Focus Outline */
button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid #007aff;
    outline-offset: 2px;
}

/* Form Heading (Optional) */
.paperform-heading {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 30px;
}

/* Progress Bar (Optional) */
.paperform-progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.paperform-progress-bar-filled {
    background: #007aff;
    height: 100%;
    transition: width 0.3s ease;
}
