﻿

.btn-purple {
    background: #5f457d;
    color: #fff;
}



/* Responsiveness */
@media(max-width: 600px;){
	.subscribe-button{
		padding: 10px 20px;
		font-size: 0.9rem;
	}
}
 

.subscribe-button {
	display: inline-block;
	padding: 15px 30px;
	background-color: #fff;
	color: black;
	text-decoration: none;
	border: 2px; solid white;
	border-raduis: 8px;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
       cursor: pointer;	
	text-align: center;
}

.subscribe-button:hover{
	background-color: #f0f0f0;  /* light grey on hover */
	color: black; /* ensures text stay black on hover */
	border-color: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15)
}

.subscribe-button:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5); /* White focuse ring against black */
}


	
