/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.fps_main_wrapper {
	max-width: 600px;
	margin: 40px auto;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	padding: 32px 24px;
	font-family: 'Segoe UI', Arial, sans-serif;
}

.fps_frontend_form h2 {
	margin-bottom: 24px;
	font-size: 2rem;
	color: #333;
	text-align: center;
}

.fps_field {
	margin-bottom: 20px;
}

.fps_field label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #222;
}

.fps_field input[type="text"],
.fps_field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	background: #fafafa;
	transition: border-color 0.2s;
}

.fps_field input[type="text"]:focus,
.fps_field textarea:focus {
	border-color: #007cba;
	outline: none;
}

.fps_field textarea {
	resize: vertical;
	min-height: 100px;
}

.fps_field .button {
	background: #007cba;
	color: #fff;
	border: none;
	padding: 8px 18px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.2s;
}

.fps_field .button:hover {
	background: #005a9e;
}

.fps_field input[type="submit"].button-primary {
	width: auto;
	font-weight: bold;
	margin-top: 10px;
}

#fps_file_preview {
	margin-top: 10px;
}

.submission_message {
	margin-top: 24px;
	font-size: 1.1rem;
	color: #007cba;
	text-align: center;
}

.fps_login_message {
	text-align: center;
	padding: 40px 20px;
	background: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #e9ecef;
}

.fps_login_message p {
	margin-bottom: 20px;
	color: #666;
	font-size: 1.1rem;
}

.fps_login_message a {
	display: inline-block;
	background: #007cba;
	color: #fff;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.2s;
}

.fps_login_message a:hover {
	background: #005a9e;
}