﻿/* Bottom left text */
.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

/* Bottom left text */
.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 40px;
}


/* Top left text */
.top-left {
    position: absolute;
    top: 8px;
    left: 16px;
}

/* Top right text */
.top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

/* Bottom right text */
.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
}

/* Bottom center text */
.bottom-center {
    position: absolute;
    top: 95%;
    transform: translate(-50%, -50%);
}


/*top center text*/
.top-centered {
    position: inherit;
    top: 10%;
    /*left: -50%;*/
}

/* Centered text */
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.jumbo {
    width: 100%;
    height: 750px;
    min-height: 600px;
    background-image: linear-gradient(white, #838180);
}

#Image1{
    width: 550px;
    height: 500px;
}

.textbox {
    width: 450px;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center; 
    border-radius: 15px;
    margin-bottom: 10px;
}

.green-textbox {
    width: 450px;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 10px;
    border: 4px solid green;
}

.red-textbox {
    width: 450px;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 10px;
    border: 4px solid red;
}

.submitButton {
    border-radius: 15px;
    width: 150px;
    height: 30px;
    text-align: center;
    /*background-color: #C18A4F;*/
    font-weight: 500;
    background-image: linear-gradient(white, #C18A4F);
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
}

.eye{
    position: absolute;
    right: 22px;
    top: 27%;
    right: 50px;
    width: 20px;
    cursor: pointer;
}



/*slides*/
/*
.fade-in {
    opacity: 1;
    transition: opacity 1s;
    z-index: 100;
}

.fade-out {
    opacity: 0;
    transition: opacity .1s;
    z-index: 0;
}*/