﻿@charset "utf-8";
/* CSS Document */

/*
Theme Name: SimpleBooking New
Theme URI: http://www.simplebooking.it/
Version: 2.0
Description: 1 Column theme from SimpleBooking
Author: QNT
Author URI: http://www.qnt.it
*/


/*-----------------Reset CSS------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */
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, font, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
	background:#DBDCDB;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}






/*-----------------CSS Tag-----------------*/

@import url('https://fonts.googleapis.com/css?family=Roboto:400');

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
	text-align: center;
	line-height: 1.4;
	font-family: Roboto, Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #333;
	background: linear-gradient(150deg, #FBFFF1 , #A0D2DB, #91C7B1, #C8E087);
	background-size: 800% 800%;

	-webkit-animation: AnimationName 30s ease infinite;
	-moz-animation: AnimationName 30s ease infinite;
	animation: AnimationName 30s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName { 
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

a {
	text-decoration: underline;
	color: #294D79;
	font-weight: bold;
}

a:hover {
	text-decoration: none;
}

.container {
	width: 50%;
	max-width: 500px;
	margin: 120px auto 0 auto;
	background: rgba(255,255,255, .7);
	padding: 48px;
	border-radius: 4px;
	box-shadow: 0 2px 8px 0px rgba(0,0,0,.15);
}

h1 {
	font-size: 28px;
	font-weight: 400;
	margin-bottom: 8px;
	line-height: 1.1;
}

.error-message {
	margin-top: 24px;
	font-size: 14px;
	color: #666;
}

@media screen and (max-width: 768px) {
	.container {
		width: 90%;
		margin-top: 16px;
		padding: 24px;
	}
}