﻿html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
input::-ms-clear,
input::-ms-reveal {
	display: none;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	font-family: sans-serif;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.app {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	background-color: rgba(255, 255, 255, 0.85);
}
.app .background {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -100;
	background-image: url(/skin/image/dsp-background.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}
h1 {
	font-size: 24px;
	font-weight: bold;
	margin: 50px 0;
	text-align: center;
}
form {
	margin: 15px auto;
    max-width: 1200px;
    padding: 3%;
    background-color: #fff;
}
.form-group {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}
.form-group>div{
	width: 50%;
}
.form-group span{
	color: #ff0000;
	padding-right: 5px;
}
label {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: bold;
}
input,
textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	margin-top: 5px;
	border: 1px solid #ccc;
	border-radius: 3px;
	box-sizing: border-box;
}
input[type="datetime-local"] {
	padding: 8px;
}
button {
	background-color: #ff4800;
	color: white;
	padding: 10px 40px;
	margin: 0 auto;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	font-size: 15px;
	display: block;
	margin-top: 30px;
}
@media (max-width: 768px) {
    form {
		padding: 6%;
	}
}
p{
	font-size: 14px;
	color: #666;
}