/*
 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
*/


#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);
	}
}

.webinar input { width: 100%; margin-bottom: 10px; border: solid 1px #5c5c5c; border-radius: 10px; }
.webinar button { background-color: #ffff00; width: 100%; color: #1F3555; border-radius: 10px; font-weight: bold; }