.email-register-form-container {
    /*background-color: #F4F4F4;*/
	width: 100%; /* Ensures the form container takes full width */
	max-width: 700px;
    
	text-align: center;
	align-items: center; /* Aligns input and button vertically */
	justify-content: center; /* Keeps input and button centered */
	/*border-radius: 15px;*/
	/*box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);*/
}

.email-register-form-container form {
	width: 90%;
	height: auto; /* Adjust height */
    display: flex;
    gap: 10px; /* Space between input and button */
	padding-top: 10px;
    align-items: center; /* Aligns input and button vertically */
	justify-content: center; /* Keeps input and button centered */
	margin: auto;
}

.email-register-form-container input {
    flex: 1; /* Makes input take up remaining space */
	min-width: 0;
	min-height: 50px;
	height: auto;
    border: 1px solid #ccc;
    border-radius: 1px;
	font-size: auto;
    color: #333; /* Dark gray text */
    font-family: Arial, sans-serif;
	padding: 10px; 
    box-sizing: border-box;
}

.email-register-form-container button {
	flex: 0.4;
	min-width: 0px;
    background-color: #B22222;
	min-height: 50px;
	height: auto;
    color: white;
    border: 1px solid;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap; /* Prevents button text from wrapping */
	/*font-size: 16px;*/
	font-size: auto;
    color: white; /* Text color */
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-transform: uppercase; /* Makes text uppercase */
}

.email-register-form-container input,
.email-register-form-container button {
    height: 50px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1;
}

.email-register-form-container input::placeholder {
    color: #999; /* Lighter gray text */

}

.email-register-form-container input:focus {
    border-color: #B22222; /* Change border color */
    outline: none; /* Remove default blue outline */
    box-shadow: 0 0 5px rgba(178, 34, 34, 0.5); /* Add a subtle glow effect */
}

.email-register-form-container button:hover {
    background-color: #D43F3F;
}

.email-register-form-container button:active {
    background-color: #EC7F7F; /* Slightly lighter red */
    transform: scale(0.95); /* Adds a slight press-down effect */
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .email-register-form-container {
        width: 100%;  
        max-width: 100%;
    }
    .email-register-form-container form {
        width: 100%;  
        max-width: 100%;
    }
    .email-register-form-container input,
    .email-register-form-container button {
        width: 100%; /* Full width */
		font-size: 14px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .email-register-form-container {
        width: 100%;  
        max-width: 100%;
    }
    
    .email-register-form-container form {
        flex-direction: column; /* Stack input and button */
        gap: 0px; /* Add space */
		margin-bottom: 0;
    }

    .email-register-form-container input,
    .email-register-form-container button {
        width: 100%; /* Full width */
    }
}




