/* General form styles */
.form-plans {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Input and textarea styling */
.forms-plans-items {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #00060c;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #ffffff;
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    color: #00060c; /* Rich Black text */
}

.forms-plans-items:focus {
    border-color: #48840e; /* Tangelo Orange on focus */
    outline: none;
}



.form-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #48840e; 
}

/* Checkbox styling */
.forms-plan input[type="checkbox"] {
    accent-color: #48840e;
}
.forms-plan input[type="radio"] {
    accent-color: #48840e; 
}
