/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.paulaioptin { width: 500px; background-color: #ffffff; padding: 10px; border: solid 1px #363636; border-radius: 10px; }
.paulaioptin input { width: 100%; margin-bottom: 5px; border: solid 1px #c5c5c5; border-radius: 10px; }
.paulaioptin button { width: 100%; background-color: #ffff00; color: #000000; border: solid 1px #c5c5c5; border-radius: 10px; }


#pulse { animation: pulse 2s infinite; transform: scale(1); box-shadow: inset 0px 0px 4px rgba(731, 51, 135, 0.2); }

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 236, 0, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(255, 236, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 236, 0, 0);
	}
}