
@font-face {
    font-family: 'ROCHESANS REGULAR';
    src: url("assets/font/ROCHESANS-REGULAR.TTF"); /* IE */
    src: local('ROCHESANS REGULAR'), url('assets/font/ROCHESANS-REGULAR.TTF') format('truetype'); /* others */
  }
  
  body {
    margin: 0;
    padding: 0;
    /* max-height: 100vh; */
    height: 100vh;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    background: url('assets/img/2026/Asset 3abott.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    overflow: hidden;
  }
  
  p {
    font-family: 'ROCHESANS REGULAR';
  }
  
  .container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 60%;
    padding-top: 20px;
  }
  
  .logo img {
    max-width: 150px;
    /* margin: 0 auto; */
  }
  
  .tube img {width: 100px;margin-top: 50px;}
  
  .form-container.form {
    position: relative;
    top: 24px;
  }
  
  .form input {
    width: 80%;
    max-width: 400px;
    padding: 12px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    outline: none;
  }
  
  .swipe-up {
    margin: auto;
    text-align: center;
    position: relative;
    bottom: -30px;
  }
  
  .swipe-up img {
    max-width: 50px;
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth animation for both position and opacity */
    animation: bounce 1s infinite; /* Louder bounce animation */
  }
  
  .swipe-up img.dragging {
    animation: none; /* Disable bounce during drag */
  }
  
  .swipe-up p {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    transition: opacity 0.3s ease;
    width: 100px;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  .swipe-up img.success {
    animation: success 1s forwards; /* Add subtle animation for successful swipe */
  }
  
  @keyframes success {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-150px);
      opacity: 0;
    }
  }
  
  .swipe-up img.touching-tube {
    border: 2px solid green;
  }
  
  .logo  {
    position: relative;
    top: unset;
    right: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img.brand-right-logo {
    max-width: 130px;
    /* height: 90px; */
    /* margin-right: 71px; */
    /* margin-top: 40px; */
  }
  
  .logo img.brand-left-logo {
    max-width: 90px;
    /* margin-right: 71px; */
    /* margin-top: 40px; */
  }
  
  #profile-pic-container {
    position: relative;
    width: 135px;
    height: auto;
    margin: auto;
    top: 0;
  }
  
  #profile-pic, #camera-view {
    width: 100%;
    height: auto;
    border-radius: 11%;
    object-fit: cover;
  }
  
  button#camera-btn {
    display: inline-block;
    position: fixed;
    top: 76%;
    background: transparent;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    width: 57%;
  }
  
  video#camera-view {
    z-index: 999999;
    position: relative;
    top: 45px;
  }
  
  button#camera-btn img {width: 60px;height: 60px;}

  p.brand-right-logo.logo-text {
    margin-right: 20px;
}