/*  ================================================
	Author: SuperFile
	Name: Landing Page
	Version: 1.0
	================================================ */

/* Import fonts and icons */
@import url("font-awesome.min.css");
@import url("grid.css");
@import url("normalize.css");
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600");

/* 1. Reset */
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, 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, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
.text-color-black {
    color: black;
}
body.bg-color-change {
    background-color: black; /* or whatever color you want after scrolling */
    transition: background-color 3s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

#dynamicTextColor.text-color-black,
h2.text-color-black {
    color: black;
    transition: color 3s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

#logoImage.logo-black {
    transition: all 3s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

body {
	font-family: "Nunito Sans", Helvetica, sans-serif;
	font-size: 1.6em;
	font-weight: 300;
	line-height: 1.7;
	  color: var(--main-text-color, #fff);
    background: var(--main-bg-color, #fff);
     background-color: black;
    color: black; /* Changed this to black */
  }
body {
    transition: background-color 3s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

body.bg-color-change {
    background-color: black; /* or whatever color you want after scrolling */
}


body.no-scroll {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.logo-inverted {
    filter: invert(1);
}

.bg-color-change {
    background-color: #dfff04;
    color: black;
}


a {
    text-decoration: none;
}


a:focus {
    outline: none;
}
.loginBox a::before, .loginBox a::after {
    content: none;
}




#forgotPasswordLink {
    text-decoration: none;
    /* any other specific styles you want */
}


#loginOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    transition: opacity 0.3s ease;
}

.loginBox {
	  position: relative; 
    background: white;
    padding: 30px;
    border-radius: 5px;
    width: 320px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    transform: scale(1.03);
    transition: transform 0.3s ease;
      display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loginBox h2 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
}

.loginBox input[type="text"],
.loginBox input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) inset;
    font-size: 14px;
    transition: box-shadow 0.3s ease;
}

.loginBox h2 {
    margin-bottom: 0.5rem; /* Adjusts the spacing below the 'Sign in' text */
    text-align: center;
}

.loginBox span {
    display: block;
    margin-top: 0.5rem; /* Adjusts the spacing above the 'Use your SuperFile Account' text */
    margin-bottom: 1rem; /* Adjusts the spacing below the 'Use your SuperFile Account' text */
}

.loginBox input[type="text"]:focus,
.loginBox input[type="password"]:focus {
    box-shadow: 0 2px 4px rgba(63,81,181,0.5) inset;
    outline: none;
}

.loginBox input[type="submit"] {
 	border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.3s, box-shadow 0.3s; /* Add box-shadow to the transition */
	text-align: center;
    width: 100%;
    padding: 12px;
    background: #1E88E5;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
      font-size: 16px; /* Adjust as needed */
         line-height: normal; /* Resets line height to browser default */
    padding: 10px 0;     /* Adjust top and bottom padding to center text. You may need to tweak this */

}

.loginBox input[type="submit"]:hover {
    background-color: #1565C0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3); /* Slightly more pronounced shadow on hover */
}

.loginBox input[type="submit"]:active {
    box-shadow: 0 1px 2px rgba(0,0,0,0.25); /* Less pronounced shadow when the button is pressed */
    background-color: #134c8f; /* A slightly darker color when pressed */
}


.loginBox a {
    display: block;
    margin-top: 10px;
    text-align: center;
    text-decoration: none;  // This is already here
    color: #007BFF; /* Adjust this color as needed */
    transition: color 0.3s ease;
}

.loginBox a:hover {
    color: #0056b3;
    text-decoration: none;  // Add this line
}


#closeOverlay {
	
 position: absolute;
    top: -10px;
    right: -65px;
    background: none;
    border: none;
    font-size: 10px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease;
}

#closeOverlay:focus {
    outline: none;
}

#closeOverlay:hover {
    color: rgba(0, 0, 0, 0.8);
}

.loginBox input[type="text"],
.loginBox input[type="password"] {
    color: black;
}

/* Base style for preloadGif - optimized for mobile */
#preloadGif {
    width: 100%;
    max-width: 800px;
    margin: 0 auto; /* Center it if the screen is wider than 800px */
}
@media (max-width: 768px) {
    #preloadGif {
        max-width: 90vw; /* Adjust as needed */
    }
}



.container .nine.columns {
    border-radius: 10px;        /* rounded corners */
    padding: 0;              /* some padding to give space between the text and the border */
    margin: 0 0;             /* some margin to separate it from other elements; adjust as needed */
    overflow: auto;             /* Ensures that the child elements' floating doesn't make this collapse */
    width:100%;
}

.round {
/*	background:#2a2a2a; */
    border-radius: 10px;        /* rounded corners */
    padding-left:10px;
    padding-right:10px;


}
/* Preloader styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1000;
    display: flex;
    justify-content: center;  
    align-items: center;      
    flex-direction: column;

  transition: opacity 2s ease-out;}

}


.reg-mark {
	font-size: 50%; 
	vertical-align: 20%;  /* Adjust this value to get the desired position */
}


#mainContent {
	opacity: 0;  /* Start with the main content invisible */
	transition: opacity 1s ease-out;  /* Transition only for fading in */
}

/* For larger devices, adjust the preloader size and center it */
@media only screen and (min-width: 768px) {
	#preloader {
		top: 50%;
		left: 50%;
		width: 50vw;  /* viewport width */
		height: 50vh; /* viewport height */
		transform: translate(-50%, -50%);
	}
}

#preloadGif, .powered-by {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#preloadVideo, .powered-by {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

#preloadVideo {
	width: 100%;
	height: auto;
}


.powered-by {
    text-align: center;
    color: #f3f4f6;
    font-weight: 300;
    font-family: 'SF Pro', Arial, sans-serif;
    margin-top: 2rem; /* Adjust as required */
    z-index: 2;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}


.superfile-text {
	color: #fff;
	font-family: 'SF Pro', Arial, sans-serif; /* Fallback to Arial if SF Pro isn't available */
}

.super-bold {
	font-weight: 700; /* Bold weight */
	font-style: italic;

}

.file-thin {
	font-weight: 300; /* Thin weight */
	font-style: italic;

}
@font-face {
	font-family: 'SF Pro';
	src: url('path_to_your_font_files/SFPro-Italic.woff2') format('woff2'),
		 url('path_to_your_font_files/SFPro-Italic.woff') format('woff');

}



article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}

/* 2. Content elements */
html {
	font-size: 62.5%;
}

body {
    background-color: black;
    color: white;
    transition: background-color 0.5s, color 0.5s;
}

h1 {
	font-weight: 400;
	color: #fff;	
	margin-top: 25rem;
	margin-bottom: 12rem;
	letter-spacing: -.15rem;
}

h3 {
	font-weight: 400;
	color: #514f4e;
	margin-top: 0;
	margin-bottom: 12rem;
	letter-spacing: -.05rem;
}

h2, h4, h5, h6 {
	font-weight: 600;
	color: #dfff04;
	margin-top: 0;
	margin-bottom: 2.5rem;
	text-transform: uppercase;
	letter-spacing: .3rem;
}

h1 {
	font-size: 3rem;
	line-height: 1.3;
}

@media (min-width: 550px) {
	h1 {
		font-size: 3rem;
		line-height: 1.3;
		margin-top: 33rem;
	}
}

h2 {
	font-size: 2rem;
	line-height: 1.2;
}

@media (min-width: 550px) {
	h2 {
		font-size: 2rem;
	}
}

h3 {
	font-size: 2.4rem;
	line-height: 1.3;
}

@media (min-width: 550px) {
	h3 {
		font-size: 2.8rem;
		letter-spacing: -.1rem;
	}
}

h4 {
	font-size: 2.2rem;
	line-height: 1.35;
}

@media (min-width: 550px) {
	h4 {
		font-size: 2.6rem;
	}
}

h5 {
	font-size: 1.8rem;
	line-height: 1.5;
}

@media (min-width: 550px) {
	h5 {
		font-size: 2.4rem;
	}
}

h6 {
	font-size: 1.6rem;
	line-height: 1.6;
}

@media (min-width: 550px) {
	h6 {
		font-size: 1.6rem;
	}
}

p {
	margin-top: 0;
}

strong, b {
	color: #222222;
	font-weight: 400;
}

em, i {
	font-style: italic;
}

a {
	color: #514f4e;
	text-decoration: none;
}

a:hover {
	color: #989898;
	border-bottom: none;
	transition: .5s;
}

hr {
	margin-top: 4rem;
	margin-bottom: 6rem;
	border-width: 0;
	border-top: 2px solid #514f4e;
	width: 50px;
	text-align: left;
	margin-left: 0;
}

hr.footer-style {
	margin-top: 3rem;
	margin-bottom: 3rem;
	border-width: 0;
	border-top: 1px solid #514f4e;
	width: 100%;
	text-align: left;
	margin-left: 0;
}

.container:after, .row:after {
	content: "";
	display: table;
	clear: both;
}

.logo {
/*	background-image: url("../images/logo.png");*/
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 50px 55px;
	height: 55px;
	margin-top: 8%;
	 cursor: pointer;
}

.loginbut {
	 cursor: pointer;
}

/* Retina styles */
@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi) {
	.logo {
	/*	background-image: url("../images/logo.png");*/
		background-size: 50px 55px;
	}
}


.subhead {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 8rem;
	margin-left: 0;
}

.logocontainer {
	background-color: #e8e8e8;
	margin-top: 6rem;
	padding: 4rem 0;
}

@media (min-width: 550px) {
	.logocontainer {
		margin-top: 7rem;
		padding: .5rem 0;
	}
}

#tooltip {
	position: absolute;
	background: #ffffff;
	color: #514f4e;
	padding: 1.5rem 2rem;
	opacity: .9;
	font-size: 1.3rem;
	font-weight: 400;
}

.footer {
	background-image: url("../images/logo.png");
	background-repeat: no-repeat;
	background-position: right top;
	background-size: 38px 42px;
	height: 42px;
	margin-bottom: 10em;
	font-size: 1em;
	color: #514f4e;
}

/* Retina styles */
@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi) {
	.footer {
		background-image: url("../images/logo.png");
		background-size: 38px 42px;
	}
}

.footer a {
	color: #514f4e;
	border: 0;
}

.footer a:hover {
	opacity: .5;
	border: 0;
}

/* Form elements */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea, 
select {
	height: 38px;
	padding: 6px 10px;
	background-color: #ffffff;
	border: 1px solid #000000;
	border-radius: 4px;
	box-shadow: none;
	box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
	-webkit-appearance: none;
	   -moz-appearance: none;
			appearance: none;
}

textarea {
	min-height: 65px;
	padding-top: 6px;
	padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
	border: 1px solid #e8e8e8;
	outline: 0;
}

label, legend {
	display: block;
	margin-bottom: .5rem;
	font-weight: 600;
}

fieldset {
	padding: 0;
	border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
	display: inline;
}

label > .label-body {
	display: inline-block;
	margin-left: .5rem;
	font-weight: normal;
}

/* Buttons */
.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
	background-color: #e8e8e8;
	background-repeat: no-repeat;
	background-position: right;
	background-size: 62px 17px;
	display: inline-block;
	height: 50px;
	width: 15rem;
	padding: 0 0 0 5rem;
	color: #514f4e;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 50px;
	letter-spacing: .1rem;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	border-radius: 0;
	border: 1px solid #514f4e;
	cursor: pointer;
	box-sizing: border-box;
	margin-top: 1rem;
	margin-bottom: 5rem;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	background-color: #dbdbdb;
	outline: 0;
	border: 1px solid #514f4e;
	transition: .3s;
}

.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	background-color: #dbdbdb;
	outline: 0;
	border: 1px solid #514f4e;
	transition: .3s;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
	color: #000000;
	background-color: #e8e8e8;
	border-color: #514f4e;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover {
	color: #ffffff;
	background-color: #d0d0d0;
	border-color: #d0d0d0;
}

.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
	color: #ffffff;
	background-color: #d0d0d0;
	border-color: #d0d0d0;
}

.button, button {
	margin-bottom: 1rem;
}

input, textarea, select, fieldset {
	margin-bottom: 1.5rem;
}

pre, blockquote, dl, figure, table, p, ol, form {
	margin-bottom: 2.5rem;
}

/* Icons */
.icon {
	text-decoration: none;
	border-bottom: none;
	position: relative;
}

.icon:before {
	font-family: "FontAwesome";
	font-style: normal;
	font-weight: normal;
	text-transform: none !important;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

.icon > .label {
	display: none;
}

/* List elements */
ol {
	list-style: decimal;
	margin: 0 0 2em 0;
	padding-left: 1.25em;
}

ol li {
	padding-left: 0.25em;
}

ul {
	list-style: disc;
	margin: 0 0 2em 0;
	padding-left: 1em;
}

ul li {
	padding-left: 0.5em;
}

ul.icons {
	cursor: default;
	list-style: none;
	padding-left: 0;
}

ul.icons li {
	display: inline-block;
	padding: 0 1em 0 0;
}

ul.icons li:last-child {
	padding-right: 0;
}

@media screen and (max-width: 980px) {
	ul.icons li .icon {
		font-size: 1em;
	}
}

ul.icons li .icon:before {
	font-size: 1.5em;
}

.footer .copyright {
	font-size: .8em;
	color: #514f4e;
	margin: .25em 0 0 0;
	padding-bottom: 4em;
	list-style: none;
}