/* Reusable Components */

/* Buttons (already defined in styles.css, but can be extended here) */

/* Product Card (already defined in styles.css, but can be extended here) */

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-dark-gray);
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-nude-beige);
    border-radius: 5px;
    font-size: 16px;
    color: var(--color-text);
    box-sizing: border-box; /* Ensures padding doesn't add to width */
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="submit"] {
    background-color: var(--color-powder-pink);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-group input[type="submit"]:hover {
    background-color: #e0b0c8;
}

/* Newsletter Popup (already defined in styles.css, but can be extended here) */

/* Social Links (already defined in styles.css, but can be extended here) */

/* General Section Styling (already defined in styles.css, but can be extended here) */