html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* Base Colors (Triangle Strategy theme) */
:root {
    --primary-bg: #2a3d54; /* Dark Blue */
    --secondary-bg: #b88f40; /* Gold */
    --accent-color: #c5c5c5; /* Light Gray */
    --text-color: #ffffff; /* White */
    --input-bg: #f1f1f1; /* Light Gray for Inputs */
    --button-bg: #b88f40; /* Gold for Buttons */
    --button-hover: #f9d84d; /* Lighter Gold for Hover */
}

/* General Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* Form Container */
form {
    width: 80%;
    max-width: 660px;
    margin: 50px auto;
    padding: 20px;
    background-color: var(--primary-bg);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Labels */
label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--accent-color);
    vertical-align: middle;
}

/* Input Fields */
input[type="text"],
input[type="email"],
input[type="textarea"],
select {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid var(--accent-color);
    background-color: var(--input-bg);
    color: var(--primary-bg);
    font-size: 1rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="textarea"]:focus,
select:focus {
    outline: none;
    border-color: var(--secondary-bg);
    box-shadow: 0 0 5px var(--secondary-bg);
}

/* Radio Buttons */
input[type="radio"] {
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
}

#char {
    margin-bottom: 15px;
}

/* Button */
input[type="Submit"] {
    background-color: var(--button-bg);
    color: var(--text-color);
    padding: 12px 20px;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

input[type="Submit"]:hover {
    background-color: var(--button-hover);
}

/* General Styling for Text Areas */
textarea {
    width: 80%;
    height: 120px;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid var(--accent-color);
    background-color: var(--input-bg);
    color: var(--primary-bg);
    font-size: 1rem;
}

textarea:focus {
    outline: none;
    border-color: var(--secondary-bg);
    box-shadow: 0 0 5px var(--secondary-bg);
}

/* Select Box */
select {
    background-color: var(--input-bg);
    color: var(--primary-bg);
    border-radius: 4px;
    padding: 10px;
    font-size: 1rem;
}

/* Form Spacing */
form br {
    margin-bottom: 10px;
}

input[type="text"]{
    width:90%;
}

textarea{
    width:90%;
}

input[type="email"]{
    width:90%;
}

input[type="select"]{
    width:120%;
}