* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
  }
  
  html {
    font-size: 62.5%;
  }

  #root {
    --primary-color: #193D9A;
    --background-color: #F5F9F6;
    --custom-ligth-gray: #efefef;
    --custom-gray: #cecece;
    --custom-dark-gray: #565656;
    --custom-dark-translucent-gray: #56565644;
    --primary-color-light: #35a7df22;
    --menu-color: #343A40;
  
    --cake-gray: #f2f2f2;
    --cake-green: #defdee;
    --cake-blue: #e7eeff;
    --cake-purple: #ede8fe;
    --cake-yellow: #fdf7d7;
  
  }

  body {
    background-color: #F5F9F6;
    font-family: 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
      sans-serif;
    max-width: none !important;
    min-width: 800px;
  }

  .container {
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    min-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }

  .welcome-page {
    width: 100%;
    height: 100svh;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: hidden;
}

.welcome-mobile-logo-container {
    display: none;
    height: 0px;
}

.welcome-background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.welcome-background-mask {
    width: 100%;
    height: 100%;
    background-color: #000000BB;
    position: absolute;
    top: 0;
    left: 0;
}

.welcome-container {
    width: 900px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    animation: reveal linear 0.5s forwards;
    animation-delay: 1s;
    opacity: 0;
    translate: 0 100px;
}

.welcome-columns-container {
    width: 900px;
    min-height: 550px;
    background-color: white;
    border-radius: 5px;
    display: flex;
    overflow: hidden;
    position: relative;
}

.welcome-select-company-container {
    width: 900px;
    min-height: 550px;
    background-color: white;
    border-radius: 5px;
    display: flex;
    overflow: hidden;
    position: relative;
}

.welcome-column-left {
    width: 600px;
    position: relative;
}

.welcome-select-company-column {
    width: 900px;
    min-height: 550px;
    position: relative;
    padding: 20px 20px 20px 20px;
}

.welcome-select-company-options-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.welcome-select-company-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.welcome-select-company-button {
    border: none;
    background-color: transparent;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 5px;
}

.welcome-select-company-button:hover {
    transform: scale(1.2);
    transition: 0.3s;
}

.welcome-column-right {
    width: 300px;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background-color: white;
}

.welcome-column-left-img {
    width: 100%;
    height: 100%;
}

.welcome-column-left-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #35a7df88;
}

.welcome-column-right-logo {
    width: 100px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.welcome-column-right-company-name {
    color: var(--custom-dark-gray);
    font-size: 1.4rem;
    font-weight: bold;
}

.welcome-column-right-section-container {
    width: 100%;
    height: 100%;
    margin-top: 20px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.welcome-column-left-logo-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 0px 20px;
    position: absolute;
    top: 0;
    left: 0;
}
.welcome-column-left-logo {
    width: 100px;
}

.welcome-column-left-logo2 {
    width: 100px;
}

.custom-button {
  color: #fff;
  background: #1677ff;
  box-shadow: 0 2px 0 rgba(5, 145, 255, 0.1);
  font-size: 14px;
  line-height: 1.5714285714285714;
  /*height: 32px;*/
  padding: 4px 15px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  user-select: none;
  touch-action: manipulation;
  outline: none;
}

@keyframes reveal {
    from {
        opacity: 0;
        translate: 0 100px;
    }

    to {
        opacity: 1;
        translate: 0 0;
    }
}

.form-container {
    height: 100%;
    position: relative;
}

@media (max-width:768px) {
    .welcome-container {
        max-width: 300px;
        overflow-y: scroll;
        scrollbar-color: transparent transparent;
        scrollbar-width: none;
    }

    .welcome-columns-container {
        max-width: 300px;
    }
    
    .welcome-column-left {
        display: none;
    }

    .welcome-column-right {
        border-radius: 5px;
    }

    .welcome-mobile-logo-container {
        display: flex;        
        width: 100%;
        justify-content: center;
        align-items: center;
        margin: 20px 0px 20px 0px;
        z-index: 1000;
        height: auto;
        padding: 0 20px 0 20px;
    }

    .welcome-column-mobile-logo {
        height: 23px;
    }
}

