@charset "utf-8";

body,td,th {
	font-family: Arial;
	font-size: 12px;
	color: #666;
	text-align: center;
}
body {
	background-color: #eeeef5;
	background-repeat: no-repeat;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
a {
	font-family: Arial;
	font-size: 12px;
	color: #415d65;
	font-weight: bold;
}
a:visited {
	color: #fd7249;
}
a:hover {
	color: #fd7249;
}
a:active {
	color: #415d65;
}
        form {
	background-color: #415d65;
	color: white;
	padding: 60px;
	border-radius: 5px;
	max-width: 500px;
	margin: auto;
        }
        form label {
            display: block;
            margin-bottom: 10px;
        }
        form input, form textarea, form button {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: none;
            border-radius: 5px;
        }
        form button {
	background-color: white;
	color: #415d65;
	font-weight: bold;
	cursor: pointer;
        }
        form button:hover {
            background-color: #e0e0e0;
        }
        #modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
        }
        #modal-content {
            background: #415d65;
            color: white;
            padding: 20px;
            border-radius: 5px;
            position: relative;
            max-width: 400px;
            text-align: center;
        }
        #modal-content button {
            margin-top: 10px;
            padding: 5px 10px;
            background-color: white;
            color: #415d65;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        #modal-content button:hover {
            background-color: #e0e0e0;
        }
