﻿.landing-navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    height: fit-content;
    width: 80%;
    padding: 7px;
    border-radius: 30px;
    column-gap: 20px;
    margin: auto;
}

.landing-navbar > div > a {
    cursor: pointer;
}

.full-logo {
    height: 35px;
}

.landing-hero {
    height: 400px;
    width: 1000px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/images/HeroS/LoginPageDecal.jpg');
    margin: 20px auto 20px auto;
    border-radius: 20px;
    border: 2px solid black;
    padding: 10px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.landing-hero-heading {
    color: white;
    font-size: 35px;
}

.landing-hero-sub-heading {
    color: white;
    font-size: 25px;
}



.landing-user-types {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    column-gap: 20px;
    padding: 15px;
    border-radius: 20px;
    width: fit-content;
}

.landing-user-types > div {
    background-color: white;
    border-radius: 20px;
    width: 250px;
    text-align: center;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

.landing-user-types-image {
    width: 210px;
    height: auto;
    border-radius: 20px;
}

.black-button {
    background-color: black !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
    border-radius: 25px !important;
    width: fit-content;
    align-self: center;
    color: white !important;
}

.landing-heading {
    color: white;
    text-align: center;
    border: none;
}

.landing-bottom {
    display: flex;
    flex-direction: row;
    column-gap: 70px;
    background-color: white;
    border-radius: 20px;
    padding-left: 50px;
    padding-right: 50px;
    padding-top:40px;
    padding-bottom: 40px;
    width: fit-content;
    margin: auto;
    margin-top: 25px;
}

.landing-bottom > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 15px;
}

.landing-bottom > div:nth-of-type(1) {
    row-gap: 40px;
}

.bottom-logo {
    height: 100px;
    width: auto;
}

.landing-input {
    outline: 1px solid black;
    border: 1px solid black;
    padding: 10px 15px 10px 15px;
    border-radius: 25px;
}