* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    /*The box-sizing property is used to tell the browser what the sizing properties (width and height) should include border-box.*/
    box-sizing: border-box;
    /*reset Chrome user agent styles*/
    -webkit-margin-before: 0px;
    -webkit-margin-after: 0px;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-before: 0px;
    -webkit-padding-after: 0px;
    -webkit-padding-start: 0px;
    -webkit-padding-end: 0px;
}

/* -------------------------------------
General styles */

body {
    font-family: sans-serif;
    font-size: 16px;
    background: url('./images/landing-background.jpg') no-repeat;
    background-attachment: fixed;
    position: relative;
}

.greyText::placeholder {
    color: grey !important;
}


.hidden {
    display: none;
}

h1 {
    margin: 5px;
    padding: 5px;
    line-height: 1.2em;
}

h2 {
    padding-left: 5px;
    height: 90px;
    overflow: hidden;
}

input::placeholder {
    color: #eeee;
}

input[type='checkbox'],
input[type='radio'] {
    margin-left: 2rem;
    margin-right: 0.1rem !important;
}


/* -------------------------------------
Header styles
*/

.title {
    margin-top: 10px;
    text-align: center;
    font-size: 20px;
}

#landing-page-info {

    padding-left: 90px;
    padding-right: 90px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* -------------------------------------
Content styles
*/

.previous-entries-dropdown {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    color: black !important;
    border-radius: 4px;
    border: #27ae60 1px solid;
    margin: 2rem auto;
}

.app-summary {
    display: block;
    text-align: center;
    margin: 2rem auto;
    width: auto;

}

.form-wrapper {
    display: block;
    width: 80%;
    margin: 2rem auto;
}

.form-wrapper .input-wrapper {
    border-bottom: 1px solid gray;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: grey
}

.form-wrapper fieldset {
    border: 1px solid blue;
    padding: 1rem;
    font-size: 1.5rem;
}

.form-wrapper fieldset label,
.form-wrapper fieldset input,
.form-wrapper fieldset select {
    display: block;
    width: 30%;
    padding: 0.5rem;
    font-size: 1.1rem;
    color: grey
}

.form-wrapper fieldset input,
.form-wrapper fieldset select {
    width: 69%;
    border: 1px solid gray;
}

.form-wrapper fieldset input.sideBySide,
.form-wrapper fieldset select.sideBySide {
    display: inline-block;
    width: auto;
    margin-right: 1rem;
    margin-top: 1rem;
}

.radioCheck {
    display: block;
    margin-bottom: 10px;
}

.form-wrapper fieldset .icons-wrapper {
    display: block;
    width: 100%;
    margin: 1rem;
}

.form-wrapper fieldset .icons-wrapper .icon-content {
    display: block;
    width: 100%;
    margin: 0.5rem;
    font-size: 1rem;
    color: grey;
}

.form-wrapper fieldset .icons-wrapper .icon-content i,
.form-wrapper fieldset .icons-wrapper .icon-content span {
    display: inline-block;
    width: auto;
    max-width: 90%;
    vertical-align: middle;
}

.form-wrapper fieldset .icons-wrapper .icon-content .fa-times {
    width: 20px;
    font-size: 2rem;
    color: red;
}

.form-wrapper fieldset .icons-wrapper .icon-content .fa-info {
    color: green;
    width: 20px;
    font-size: 2rem;
}

.form-wrapper fieldset .icons-wrapper .icon-content span {
    margin-left: 1rem;
}

.depth-notes {
    display: block;
    width: 100%;
    border: 1px solid gray;
    font-family: sans-serif;
}

.legend-show button,
.legend-hide button {
    display: inline-block;
    vertical-align: middle;
    padding: 12px;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 16px;
    background-color: transparent;
    border: 1px solid blue;
    border-radius: 5px;
}

.fixed-cta {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 10000;
    margin: 0;
    background-color: white;
    opacity: 0.9;
}

.fixed-cta fieldset {
    border: 0;
    border-top: 1px solid blue;
}

.last-wrapper {
    margin-bottom: 200px;
}


.authentication-box {
    background: white;
    width: 300px;
    border-radius: 6px;
    margin: 2rem auto;
    padding: 0px 0px 70px 0px;
    border: 1px solid blue;
    display: block;
    margin-bottom: 10px;
}


p {
    margin-top: 10px;
}

.loginUsername,
.loginPassword,
.registerUsername,
.registerPassword,
.registerEmail {
    background: #ecf0f1;
    border: #ccc 1px solid;
    border-bottom: #ccc 2px solid;
    padding: 8px;
    width: 250px;
    margin-top: 10px;
    font-size: 1em;
    border-radius: 4px;
}

.button,
.submit-button {
    background: #462ecc;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    color: white !important;
    border-radius: 4px;
    border: #27ae60 1px solid;
    margin-top: 20px;
    margin-bottom: 0px;
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    display: block;
    font-weight: 800;
    font-size: 0.8em;
}

.loginRegister {
    padding-bottom: 20px;
    padding-top: 20px;
}

.button:hover,
.submit-button:hover,
.select-previous-entries-button:hover {
    background: #2CC06B;
    color: white;
}

#absoluteCenteredDiv {

    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 400px;
    height: 300px;
    text-align: center;
}


/* -------------------------------------
Footer styles
*/


/* -------------------------------------
Responsive styles
*/
input[type="date"] {
    display: block;

    /* Solution 1 */
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    min-height: 1.2em;

    /* Solution 2 */
    /* min-width: 96%; */
}
