﻿/* This indicates the footer section that has the instagram and icons and placement*/
.bottom-foot {
    display:flex;
    justify-content: center;

}

.low-pic {
    width: 40px;
    height: auto;

}


.form-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.submit {
    font-size: 20px;
    width: 75px;
    height: 50px;
    border: none;
    cursor: pointer;
    padding: 10px 5px;
    background-color: black;
    text-align:center; 
    align-items: center;
    box-sizing: border-box;
    color: white;
}


    .submit:hover {
        background-color: #153e0f;
        color: white;
        align-items: center;
        padding:10px;
    }

.form-check {
    width: 50px;
    height: auto;
}


body.original {
    background-color: #082301;
    transition: background-color 0.5s ease;
}

body.new {
    background-image: url('image/blackCamo.png');
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.5s linear;
    
}

.logpass {
    display: flex;
    justify-content: center;
    height: 100vh;
    text-align: center;
    align-items: center ;
}

.mid-tree {
    width: 300px;
    height: auto;
}

.email {
    width: 300px;
    height: 50px;
    border: 2px solid #000;
    padding: 10px;
    font-size: 16px;
    background-color: black;
    color: #3A9605;
    box-sizing: border-box;
}

    .email:focus {
        outline: none;
        border-color: #3A9605;
    }

    .email::placeholder {
        color: #999;
    }



.passvali {
    color: #3A9605;
    text-decoration: none;
    font-size: 20px;
    margin-top: 20px;
    display: block;
    text-align: center;
}

/* This is the box around the slider */
.color-switch{
    display: inline-block;
    width: 50px;
    height: 25px;
    position: relative;
    font-size: 17px;
}

.color-switch input {
    opacity: 1;
    width: 0;
    height: 0;
}


.slider {
    position: absolute;
    cursor: pointer;
    size: 30px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0px;
    background: #000000;
    transition: .4s;
    border-radius: 30px;
    border: 1px solid #3A9605;
   }

   .slider:before {
    position: absolute;
    content: "";
    height: 1.3em;
    width: 1.3em;
    border-radius: 16px;
    left: 1.2px;
    top: 0;
    bottom: 0;
    background-color:rgb(10, 107, 7);
    transition: .4s;
   }

      
   input:checked + .slider {
    background-color: lime;
    border: 1px solid lightblue;
   }

   input:checked + .slider:before {
    transform: translateX(1.45em);
    background-color: green;
   }

 /* This is the message that appears when the user signs up successfully or encounters an error */


.signup-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signup-row {
    display: flex;
    align-items: center;
}

.signup-consent {
    width: 300px;
    margin: 4px 0 0;
    color: #777;
    font-size: 10px;
    line-height: 1.4;
    text-align: center;
}

.signup-message {
    min-height: 18px;
    margin: 10px 0 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;

    opacity: 1;
    transition: opacity 0.5s ease;
}

.signup-message.error {
    color: #b5b5b5;
}

.signup-message.success {
    color: #3A9605;
}

.signup-message.fade-out {
    opacity: 0;
}

#earlyAccessLink {
    display: none;
}

/* This is the owner login link that appears on the webpage for owners to access the admin page */

.owner-login {
    display: block;
    margin-top: 10px;

    color: #555;
    text-decoration: none;

    font-size: 10px;
    letter-spacing: 1px;

    text-align: center;
}

.owner-login:hover {
    color: #3A9605;
}


/* ==============================
   EARLY ACCESS MODAL
   ============================== */

.access-modal {
    position: fixed;
    inset: 0;

    display: none;

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

    background-color: rgba(0, 0, 0, 0.75);

    z-index: 9999;
}

.access-modal.active {
    display: flex;
}

.access-modal-content {
    position: relative;

    width: 90%;
    max-width: 420px;

    padding: 40px 30px;

    background-color: #050505;

    border: 1px solid #3A9605;

    text-align: center;
}

.access-modal-content h2 {
    margin-bottom: 10px;

    color: #3A9605;

    font-size: 24px;
    letter-spacing: 2px;
}

.access-modal-text {
    margin-bottom: 25px;

    color: #999;

    font-size: 12px;
    letter-spacing: 1px;
}

.access-password-input {
    width: 100%;
    height: 50px;

    padding: 0 15px;

    background-color: #111;

    border: 1px solid #333;

    color: white;

    font-size: 14px;
    letter-spacing: 1px;
}

.access-password-input:focus {
    outline: none;
    border-color: #3A9605;
}

.access-enter-button {
    width: 100%;
    height: 50px;

    margin-top: 12px;

    border: none;

    background-color: #3A9605;

    color: white;

    font-weight: bold;
    letter-spacing: 1px;

    cursor: pointer;
}

.access-enter-button:hover {
    background-color: #153e0f;
}

.access-modal-close {
    position: absolute;

    top: 12px;
    right: 15px;

    border: none;
    background: transparent;

    color: #777;

    font-size: 26px;

    cursor: pointer;
}

.access-modal-close:hover {
    color: white;
}

.access-message {
    min-height: 18px;

    margin-top: 15px;

    color: #b5b5b5;

    font-size: 11px;
    letter-spacing: 1px;

    text-align: center;
}

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

@media (max-width: 600px) {

    body {
        overflow-x: hidden;
    }

    .logpass {
        width: 100%;
        min-height: 100vh;
        height: auto;

        display: flex;
        flex-direction: column;

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

        padding: 40px 20px;
        box-sizing: border-box;
    }

    .mid-tree {
        display: block;
        width: 180px;
        max-width: 65%;
        height: auto;

        margin: 0 auto 35px;
    }

    .signup-area {
        width: 100%;
        max-width: 320px;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .signup-row {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: stretch;
    }

    .email {
        width: 100%;
        max-width: 100%;
        height: 50px;

        box-sizing: border-box;
    }

    .submit {
        width: 100%;
        height: 50px;

        margin-top: 10px;

        box-sizing: border-box;
        font-size: 16px;
    }

    .signup-message {
        width: 100%;
        text-align: center;
    }

    .signup-consent {
        width: 100%;
        max-width: 320px;

        margin-top: 10px;

        box-sizing: border-box;
        text-align: center;
    }

    .passvali {
        font-size: 14px;
        margin-top: 15px;
    }

    .access-modal-content {
        width: calc(100% - 30px);
        padding: 35px 20px;
        box-sizing: border-box;
    }

    .access-modal-content h2 {
        font-size: 20px;
    }

    .low-pic {
        width: 35px;
    }
}