* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Century Gothic", Arial, sans-serif;
    background-color:  black;
}

h1, h2, h3, h4, h5, h6 {
    font-family: inherit, Arial, sans-serif;
}


/* Navbar styles */
.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 14px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5000;
    min-height: 56px;
    height: auto;
}

.navbar.with-dropdown {
    background-color: rgba(0, 0, 0, 0.00001); /* Semi-transparent black */
    backdrop-filter: blur(10px); /* Blur the content underneath */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
}


/* Dropdown menu */
.dropdown-menu {
  visibility: hidden;
  position: absolute;
  top: 14px;
  left: 14px;
  padding-left: 53px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 5500;
}

.dropdown-menu.show {
  visibility: visible;
  display: flex;
  opacity: 1;
}

#menu-home{
    margin-left: 10px;
    font-size: 25px;
    margin-right: 18px;
    color: black;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    align-items: center;
    text-align: left;
    line-height: 42.5px;
    z-index: 10000;
}

#menu-about, #menu-tcs, #menu-privacy, #menu-pricing, #menu-demo{
        font-size: 20px;
        margin-right: 24px;
        color: black;
        cursor: pointer;
        position: relative;
        text-decoration: none;
        align-items: center;
        text-align: left;
        line-height: 42.5px;
    }

#menu-about::after,  #menu-tcs::after,  #menu-privacy::after, #menu-pricing::after,  #menu-demo::after{
        content: ""; /* Create the pseudo-element */
        position: absolute; /* Position relative to the parent */
        bottom: 8px; /* Place at the bottom of the link */
        left: 0; /* Start at the left */
        width: 0; /* Initial width is 0 (hidden) */
        height: 2px; /* Height of the underline */
        background-color: black; /* Black underline */
        transition: width 0.6s ease; /* Smooth animation */
}

#menu-about:hover::after {
        width: 100%
    }

#menu-tcs:hover::after {
        width: 100%
    }

#menu-privacy:hover::after {
        width: 100%
}

#menu-pricing:hover::after {
        width: 100%
}

#menu-demo:hover::after {
        width: 100%
}

#hero-section {
    min-height: 100vh;
    background: url('/static/KeyImages/yortor_background_new4.png');
    background-position: center;
    background-size: cover;
    color: black;
    position: relative;
    overflow: hidden;
}


#homepage-logo {
     position: absolute;
      bottom: 80px;
      right: 110px;
      width: 200px;
      height: auto;
}


#home-statement {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 30px;
}

#signin-container{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
}

/* Centered white box for the signin container */
#signin-container2 {
    background-color: #FCFCFC;
    padding: 40px;
    width: 500px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 70px;
}

form {
    margin-top: 20px;
}

#email-input{
    vertical-align: middle;
    width: 300px;
    font-size: 16px;
    height: 42px;
    padding: 10px;
    background-color: #EDEDED;
    border: 0px;
    text-align: center;
}

#email-submit-button{
    width: 300px;
    border: 0px;
    margin-top: 10px;
    color: #fcfcfc;
    background-color: black;
    padding: 12px 18px;
    text-decoration: none;
    font-size: 16px;
    font-family: "Century Gothic", Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#email-submit-button:hover {
        color: black;
        background-color: #98EEA0;
    }




#create-account-text {
    margin-top: 30px;
    font-size: 14px;
    color: #333;
}

#create-account-link {
    font-weight: bold;
    text-decoration: underline;
    color: #000;
}

#create-account-link:hover {
    color: #007bff;
    text-decoration: none;
}

.error-message {
            color: #FF5649;
            font-size: 14px;
            margin-bottom: 10px;
        }


@media screen and (max-width: 1024px) {
        #homepage-logo {
              width: 200px;
              bottom: 60px;
              right: 80px;
        }
}

@media screen and (max-width: 768px) {
        #home-statement {
            font-size: 36px;
             -webkit-text-size-adjust: 100%;
        }

        #homepage-logo {
              right: 60px;
        }

        #menu-home {
            margin-left: 0px;
        }


        #menu-about, #menu-tcs, #menu-privacy, #menu-pricing, #menu-demo{
            margin-right: 20px;
         }

         .dropdown-menu {
              padding-left: 43px;
        }
}

@media screen and (max-height: 500px) {
    #homepage-logo {
              display: none;
        }

    #signin-container2 {
        margin-bottom: 0px;
        padding: 26px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 550px) {
    #signin-container2 {
        margin-left: 40px;
        margin-right: 40px;
        padding-left: 30px;
        padding-right: 30px;
        }
}

@media screen and (max-width: 490px)  {
    #homepage-logo {
              right: 40px;
        }
}