@charset "utf-8";

/* ==========================================
   JULES NINO PASSWORD PAGE
========================================== */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    background-color: #F9F6EE;
 	font-family: "Montserrat", sans-serif;
    color: #333;
}


/* ==========================================
   PAGE
========================================== */

#passwordPage {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px 20px;
}


/* ==========================================
   PASSWORD BOX
========================================== */

#passwordBox {
    width: 100%;
    max-width: 460px;

    text-align: center;

    background: #fff;

    padding: 55px 40px;

    border-top: 2px solid #C30;
}


/* ==========================================
   LOGO
========================================== */

.jnLogo img {
    width: 100%;
    max-width: 100%;
    height: auto;
}


/* ==========================================
   TAGLINE
========================================== */

.tagline {
    margin: 15px 0 25px 0;
    color: #333;
	font-size: 21px;
  	color: #0099CC;
/*	font-family: "Montserrat", sans-serif;*/
	font-weight: 100;
	letter-spacing: 0.33em;

}

.tagline span {
    color: #C30;
    padding: 0 5px;
}


/* ==========================================
   DIVIDER
========================================== */

.divider {
    width: 100%;
    height: 1px;

    background: #ccc;

    margin: 25px 0;
}


/* ==========================================
   HEADINGS
========================================== */

h1 {
    margin: 0 0 15px 0;

    font-family: "Courier New",
                 Courier,
                 monospace;

    font-size: 24px;
    font-weight: normal;

    color: #333;
}

h2 {
    margin: 0 0 15px 0;
/*
    font-family: "Courier New",
                 Courier,
                 monospace;*/

    font-size: 20px;
    font-weight: normal;

    color: #333;
}


/* ==========================================
   TEXT
========================================== */

.intro {
    margin: 0 0 25px 0;

    font-size: 15px;

    line-height: 1.6;

    color: #666;
}


/* ==========================================
   INPUTS
========================================== */

input {
    display: block;

    width: 100%;

    height: 45px;

    margin: 0 0 12px 0;

    padding: 0 15px;

    border: 1px solid #ccc;

    background: #fff;
/*
    font-family: "Lucida Sans Unicode",
                 "Lucida Grande",
                 sans-serif;*/

    font-size: 15px;

    color: #333;

    outline: none;
}

input:focus {
    border-color: #999;
}


/* ==========================================
   BUTTONS
========================================== */

button {
    width: 100%;

    height: 45px;

    border: 1px solid #333;

    background: #333;

    color: #fff;
/*
    font-family: "Courier New",
                 Courier,
                 monospace;*/

    font-size: 15px;

    cursor: pointer;

    transition: .3s ease-in-out;
}

button:hover {
    background: #C30;

    border-color: #C30;
}


/* ==========================================
   ERROR
========================================== */

#errorMessage {
    display: none;

    margin: 15px 0 0 0;

    color: #C30;

    font-size: 12px;
}


/* ==========================================
   REQUEST ACCESS
========================================== */

.requestAccess {
    margin-top: 30px;
}

.requestAccess p {
    margin: 0 0 10px 0;

    font-size: 12px;

    color: #777;
}

#requestButton {
    width: auto;

    height: auto;

    padding: 0;

    border: none;

    background: transparent;

    color: #777;
/*
    font-family: "Lucida Sans Unicode",
                 "Lucida Grande",
                 sans-serif;*/

    font-size: 12px;

    text-decoration: underline;
}

#requestButton:hover {
    background: transparent;

    border: none;

    color: #C30;
}


/* ==========================================
   REQUEST FORM
========================================== */

#requestFormContainer {
    display: none;

    margin-top: 10px;
}

#requestFormContainer p {
    margin: 0 0 20px 0;

    font-size: 15px;

    line-height: 1.6;

    color: #666;
}

#backButton {
    margin-top: 15px;

    width: auto;

    height: auto;

    padding: 0;

    border: none;

    background: transparent;

    color: #777;
/*
    font-family: "Lucida Sans Unicode",
                 "Lucida Grande",
                 sans-serif;*/

    font-size: 12px;
}

#backButton:hover {
    background: transparent;

    border: none;

    color: #C30;
}


/* ==========================================
   MOBILE
========================================== */

@media screen and (max-width: 600px) {

    #passwordPage {
        padding: 20px;
    }

    #passwordBox {
        padding: 55px 40px;
    }

    .jnLogo img {
        width: 100%;
    }

    h1 {
        font-size: 18px;
    }

}

/* ==========================================
   THANK YOU MESSAGE
========================================== */

#thank-you {
    display: none;

    margin: 20px 0;
    padding: 15px;

    color: darkgreen;

    font-size: 17px;

    line-height: 1.6;

    background: rgba(209, 226, 196, .60);

    border-radius: 10px;

    opacity: 0;

    transition: opacity 0.5s ease;
}

#thank-you.show {
    display: block;
    opacity: 1;
}