/*

Thin HTML5 Coming Soon Template by MediaLoot
URL: http://medialoot.com/item/thin-html5-coming-soon-template

Designer: Tony Thomas

*/

/*Styles*/

html {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 0; padding: 0;
	height: 100%;
	font-size: 14px;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,.25);
}

body {
	background-image: url(../images/purplepinkgradientbg.png);
	margin: 0;
    padding: 0;
	
}

::selection {
	background: rgba(0,0,0,0.25);
}

header {
	padding: 2em;
}

.wrapper {
	max-width: 960px;
	width: 95%;
	margin: auto;
}

ul, ol, li {
	margin: 0;
	padding: 0;
	display: inline-block;
	list-style: none;
}

h1 {
	margin-top: 5px;
	margin-bottom:25px;
	margin-left:auto;
	margin-right:auto;
	text-align: center;
	color: #ffffff;
	font-weight: 10;
	font-size: 40px;
}

h2 {
	font-size: 40px;
	width: 90%;
	color: #f206f4;
	text-align: center;
	margin-top:25px;
	margin-bottom:25px;
	margin-left:auto;
	margin-right:auto;
	font-weight: 10;
}

p {
	text-align: center;
	width: 90%;
	margin: 20px auto;
	line-height: 1.6;
	font-weight: 200;
	font-size: 18px;
	color: rgba(255, 255, 255, .75);
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 25%;
}

ul.countdown {
	margin: 60px auto;
	display: block;
	text-align: center;	
}


ul.countdown li span {
 	display: block;
 	font-size: 46px;
 	color: rgba(255, 255, 255, 1);
 	font-weight: 100;
 }

.connect {
    text-align: center;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
	padding-bottom: 90px; /* Adds space for the footer */
}

.connect form {
    margin-top: 10px;
    margin-bottom: 150px;
    width: 100%; /* Adjust to fit container */
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.connect form input[type="text"],
.connect form input[type="email"] {
    display: block; /* Ensure inputs stack vertically */
    width: calc(100% - 40px); /* Adjust width to include padding and fit container */
    height: 46px;
    margin: 21px auto; /* Space between inputs */
    border: 1px solid #fff;
    border-radius: 99px; /* Fully rounded */
    background: none;
    font-size: 14px;
    padding: 0 20px;
    color: #fff;
    font-weight: 200;
    opacity: 0.65;
    transition: opacity 0.3s, border 0.3s;
}

.connect form input[type="text"]:focus,
.connect form input[type="email"]:focus {
    opacity: 1;
    border: 1px solid #f206f4; /* Accent color on focus */
    outline: none;
}

.connect form input[type="email"]:hover {
    opacity: 0.8;
}

.connect form input[type="submit"] {
    display: block;
    width: calc(100% - 200px); /* Full width matching inputs */
    height: 48px;
    border: none;
    cursor: pointer;
    border-radius: 99px; /* Fully rounded */
    background-color: #fff;
    margin: 15px auto;
    font-size: 17px;
    font-weight: bold;
    color: #f206f4;
    opacity: 0.85;
    transition: opacity 0.3s, background-color 0.3s;
}

.connect form input[type="submit"]:hover {
    opacity: 1;
    background-color: #f206f4;
    color: #fff;
}

.g-recaptcha {
    margin: 20px auto;
    text-align: center;
}

.connect form .success-message {
    color: #28a745;
    font-size: 14px;
    margin-top: 15px;
}

.connect form .error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 15px;
}

.connect ul {
	width: 440px;
	text-align: center;
	display: block;
	margin: 60px auto 20px auto;
}

.connect ul li a {
	width: 48px;
	height: 48px;
	display: block;
	text-indent: -499px;
	overflow: hidden;
	opacity: 0.65;
	border-radius: 499px;
	border: 1px solid #fff;
	margin: 0 5px;
}

.connect ul li a:hover {
	opacity: 1;
}

.connect ul li a:active {
	opacity: 0.8;
}

.connect ul li.facebook a {background: url(../images/connect-facebook.png) no-repeat center;}
.connect ul li.twitter a {background: url(../images/connect-twitter.png) no-repeat center;}
.connect ul li.google a {background: url(../images/connect-google.png) no-repeat center;}
.connect ul li.instagram a {background: url(../images/connect-instagram.png) no-repeat center;}
.connect ul li.sharethis a {background: url(../images/connect-sharethis.png) no-repeat center;}

@media only screen and (max-width : 960px) {
	.wrapper {
		width: auto;
	}
	.connect {
		display: block;
		float: none;
		width: 348px;
		margin: 50px auto;
	}
	.connect form {
		width: 100%;
	}
	.connect form input[type=text]
	input[type=email] {
		width: 206px;
	}
	.connect ul {
		width: 340px;
	}
}

@media only screen and (max-width : 480px) {
	h1, ul.countdown {
		margin: 20px auto;
	}
	h2 {
		margin: 40px auto;
	}
}

@media only screen and (orientation: landscape) {
    .connect {
        padding-bottom: 150px; /* Extra padding to ensure form stays visible */
    }

    footer {
        margin-top: 20px; /* Adds space above footer */
    }
}



/*Fade In Animation*/

h1, ul.countdown, h2, p, form, .connect {
            animation: fadein 3s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }

}
footer {
    position: relative; /* Part of the document flow */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #7077fe;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    border-top: 3px solid #f206f4;
    padding: 10px 0;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure the entire viewport height is used */
    display: block; /* Avoid flex issues for content height */
}

