/**
 * Common Form Styles
 *
 * Shared styles for registration, login, and phone verification forms.
 *
 * @package Sukoon_Donor_Manager
 */

/* Input placeholder styling */
input::placeholder {
	color: #333;
	opacity: 0.3;
}

/* Phone fields layout */
.phone-fields {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

/* Field icon positioning */
.field-icon {
	float: right;
	margin-left: -25px;
	margin-top: -30px;
	position: relative;
	z-index: 2;
	margin-right: 5px;
	cursor: pointer;
	color: #a4a4a4;
}

/* Responsive media elements */
iframe,
object,
embed {
	max-width: 100%;
	max-height: 100%;
}

/* Button styling for disabled state */
button[type="button"][disabled] {
	cursor: not-allowed;
	background: aliceblue;
}

/* Button styling for enabled state */
button[type="button"]:not([disabled]) {
	background-color: var(--color-primary);
	cursor: pointer;
}
table.invoice-table tbody tr button.btn.btn-danger {
    background: #F14C41;
}


/* Message styling */
.phone-fields-message,
.verification-message {
	color: green;
	margin-bottom: 1rem;
}

/* Mobile responsive adjustments */
@media screen and (max-width: 600px) {
	.verification-fields div.form__input-group {
		width: 100%;
		margin-right: 0;
		margin-bottom: 5px;
	}

	.phone-fields div.form__input-group {
		width: 100%;
		margin-bottom: 9px;
	}
}
