﻿/* Base Styles */
body {
	background: #000000; /* Deep, dark background */
	color: #f0e6dc; /* Pale parchment color for text */
	font-family: 'Courier New', monospace; /* Old-school typewriter feel */
	margin: 0;
	padding: 0;
}

/* Form Elements */
/*form {
	background: rgba(0, 0, 0, 0.5);*/ /* Semi-transparent dark overlay */
	/*padding: 20px;
	border: 2px solid #4d0000;*/ /* Blood red border */
	/*border-radius: 10px;
	margin: 20px auto;
	width: 80%;
	max-width: 500px;
}*/

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
	width: 100%;
	padding: 10px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #8b0000; /* Darker red for borders */
	box-sizing: border-box;
	background: #333; /* Dark input background */
	color: #f0e6dc;
}

input[type="submit"],
button {
	background-color: #8b0000; /* Red for action buttons */
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	cursor: pointer;
	width: 100%;
	font-size: 16px;
	transition: background-color 0.3s ease;
}

	input[type="submit"]:hover,
	button:hover {
		background-color: #a50000; /* Darker red on hover */
	}

/* Text Styles */
h1, h2, h3 {
	color: #ff4500; /* Burnt orange for headers */
	text-shadow: 2px 2px 4px #000000; /* Deep shadow for depth */
}

p {
	line-height: 1.6;
}

/* Additional Styling for Focus */
input:focus, textarea:focus {
	outline: none;
	border-color: #ff4500;
	box-shadow: 0 0 5px #ff4500;
}

/* Error Messages */
.error {
	color: #ff0000; /* Bright red for errors */
	font-weight: bold;
}

/* Responsive Design */
@media (max-width: 600px) {
	form {
		width: 90%;
	}
}
