input[type="text"]:focus {
	/* added by Kamran M */
	background-color:#FFC;
}

.submit-button {
		background-color: #4CAF50;
		color: white;
		border: none;
		padding: 10px 20px;
		text-align: center;
		text-decoration: none;
		display: inline-block;
		font-size: 1em;
		border-radius: 5px;
		cursor: pointer;
		transition: background-color 0.3s;    
		position: relative; /* Add this line to make positioning absolute */
		bottom: 0em; /* Adjust the distance from the bottom edge */
		margin: 0.5em;
		}
	.submit-button:hover {
		background-color: #45a049;
	}

.row {
		clear:both;
	}

.item {
		float:left;
		margin: 0.4em;
		line-height: 1em;
	}
