body {
    background-color: rgb(2, 84, 160);
    margin: 0;
    padding: 0;
}

.full-width-bar {
    position: fixed;
    /* stays in place even when scrolling */
    top: 0;
    /* stick to top */
    left: 0;
    /* align to left edge */
    width: 100vw;
    /* span the whole width */
    height: 12vh;
    /* thickness */
    background-color: white;
    /* color */
    align-items: center;
    display: flex;
    justify-content: center;
    box-shadow: -5px 5px 20px rgb(49, 49, 49);
    z-index: 100000000000000000;
}

.titleLine {
    width: 70vw;
    border: 2px solid white;
    border-radius: 50px;
    margin-top: 10px;
}

.inside-bar-text {
    color: rgb(0, 0, 0);
    font-size: 50px;
    align-self: center;
    background-color: transparent;
    border-color: transparent;
    font-family: 'Playfair Display SC';
}

.inside-bar-text:hover {
    cursor: pointer;
}

.inside-barImage {
    height: 90%;
}

.log-inBtn {
    height: 4vh;
    width: 7vw;
    font-size: 1vw;
    border-color: transparent;
    background-color: rgb(10, 10, 10);
    border-radius: 1vh;

    font-family: 'sans';
    transition: opacity 0.1s;
}

.accountButtons {
    height: 4vh;
    width: 15vw;
    font-size: 1vw;
    border-color: transparent;
    background-color: rgb(10, 10, 10);
    border-radius: 1vh;

    font-family: 'sans';
    transition: opacity 0.1s;
}

.log-inBtn:hover {
    cursor: pointer;
    opacity: 0.8;
}

.right {
    position: absolute;
    right: 20px;
    z-index: 3;
}

.left {
    position: absolute;
    left: 20px;
    z-index: 3;
}

.alignCenter {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.accountBackground {
    height: 90vh;
    width: 50vw;
    background-color: rgb(20, 20, 20);
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    /* 👈 stack vertically */
    align-items: center;
    /* 👈 center horizontally */
    font-family: 'Oswald';
}

#loginHeader {
    font-size: 30px;
}

.signupDropdown {
    height: 4vh;
    border-color: rgb(238, 231, 231);
    border-width: 2px;
    background-color: rgb(12, 12, 12);
    color: white;
}

.loginMiniTexts {
    font-size: 20px;
    margin-bottom: 5px;
}

.signUpErrorTexts {
    font-size: 20px;
    margin-bottom: 2px;
}

.inputLeft {
    height: 50vh;
    width: 30vw;
}

.inputLeftLogin {
    height: 40vh;
    width: 30vw;
}

.rightBottom {
    position: absolute;
    right: 20px;
    bottom: 0;
}

.loginTextBox {
    width: 30vw;
    height: 4vh;
    border-radius: 5px;
    border-color: transparent;
    background-color: rgb(16, 16, 16);
}

.nameSignupBox {
    width: 10vw;
    height: 4vh;
    border-color: transparent;
    background-color: rgb(16, 16, 16);
}

.parentContainer {
    display: flex;
    justify-content: center;
    /* horizontal centering */
}

.formatList {
    color: white;
    font-size: 25px;
}

.mainPageLayout {
    min-height: 95vh;
    width: 65vw;
    margin-top: 12vh;

    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.mainPageHeaderText {
    font-size: 45px;
    margin: 0px;
    margin-top: 25px;
}

.displayImage {
    height: 200px;
    width: 200px;
    background-color: transparent;
}

.displayImage:hover {
    cursor: zoom-in;
}

.steps {
    font-size: 25px;
    text-align: left;
}

#secondPart {
    min-height: 100vh;
    width: 65vw;
    /* background-color: green; */
}

#homeButton {
    margin-top: 20px;
    width: 50px;
    height: 50px;
    color: white;
}

.home-button {
    background: white;
    border: 2px solid #666;
    border-radius: 4px;
    padding: 5px;
    cursor: pointer;
}

.home-button:hover {
    background: #f0f0f0;
}

#reportBox {
    resize: none;
    width: 60vw;
    height: 30vh;
    border-radius: 5px;
    background-color: rgb(27, 27, 27);
    color: white;
    font-size: 20px;

    margin-bottom: 30px;
}

#month {
    width: 6vw;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#day {
    width: 3vw;
    border-left: transparent;
    border-right: transparent;
}

#year {
    width: 6vw;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 3px;
}

.display {
    width: 60vw;
    height: 35px;
    display: flex;
    flex-direction: column;
}

.slider {
    border: solid;
    border-color: black;
    border-width: 2px;

    width: 50px;
    height: 25px;
    border-radius: 999px;
    background-color: rgb(255, 0, 0);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05) inset;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.circle {
    border: solid;
    border-color: black;
    border-width: 1px;

    width: 20px;
    height: 20px;
    border-radius: 99px;
    background-color: rgb(179, 179, 179);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05), -5px -5px 15px rgba(0, 0, 0, 0.05) inset;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(10%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.toggleRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.mapClass {
    height: 80vh;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}

p,
input[type="text"],
input[type="password"],
input[type="email"],
button,
label {
    color: white;
}

input[type="checkbox"] {
    display: none;
}

textarea {
    border-color: transparent;
}

input[type="checkbox"]:checked+.display .slider {
    background-color: rgb(1, 102, 1);
}

input[type="checkbox"]:checked+.display .slider .circle {
    left: 100%;
    transform: translate(-110%, -50%);
}

@media (max-width: 1100px) and (min-width: 801px) {
    .mainPageLayout {
        width: 80vw;
    }

    #secondPart {
        min-height: 100vh;
        width: 80vw;
        /* background-color: green; */
    }

    .steps {
        font-size: 20px;
    }

    .formatList {
        font-size: 20px;
    }

    .mainPageHeaderText {
        font-size: 30px;
        margin: 0px;
        margin-top: 25px;
    }

    .inside-barImage {
        height: 80%;
    }

    .inside-bar-text {
        font-size: 25px;
    }

    .full-width-bar {
        height: 10vh;
    }

    .titleLine {
        width: 90vw;
    }

    .mapClass {
        height: 50vh;
    }

    #reportBox {
        width: 85vw;
    }

    .log-inBtn {
        width: 15vw;
        font-size: 15px;
    }
}

@media (max-width: 800px) {
    .mainPageLayout {
        width: 90vw;
    }

    .accountBackground {
        width: 95vw;
        height: 95vh;
    }

    .inputLeft {
        height: 50vh;
        width: 80vw;
    }

    .inputLeftLogin {
        height: 40vh;
        width: 80vw;
    }

    .loginTextBox {
        width: 65vw;
        height: 4vh;
        border-radius: 5px;
        border-color: transparent;
        background-color: rgb(16, 16, 16);
    }

    .signupDropdown {
        height: 10vw;
    }

    #secondPart {
        min-height: 100vh;
        width: 90vw;
        /* background-color: green; */
    }

    .steps {
        font-size: 20px;
    }

    .formatList {
        font-size: 20px;
    }

    .mainPageHeaderText {
        font-size: 30px;
        margin: 0px;
        margin-top: 25px;
    }

    .inside-barImage {
        height: 80%;
    }

    .inside-bar-text {
        font-size: 25px;
    }

    .full-width-bar {
        height: 10vh;
    }

    .titleLine {
        width: 90vw;
    }

    .mapClass {
        height: 50vh;
    }

    #reportBox {
        width: 85vw;
    }

    .log-inBtn {
        width: 15vw;
        font-size: 15px;
    }

    .nameSignupBox {
        width: 31vw;
        height: 4vh;
    }

    #month {
        height: 4vh;
        width: 25vw;
    }

    #day {
        height: 4vh;
        width: 15vw;
        border-left: transparent;
        border-right: transparent;
    }

    #year {
        height: 4vh;
        width: 25vw;
    }

    .accountButtons {
        font-size: 5vw;
        width: 40vw;
    }
}