body {
    margin: 0;
    background-color: rgb(243, 243, 243);
}

.d-none {
    display: none;
}

.start-image-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    top: 5%;
    left: 10%;
}

.start-image {
    width: 100px;
    height: 122px;
}

.logo {
    position: absolute;
    top: 80px;
    left: 77px;
}

.logo img {
    width: 100px;
    height: 122px;
}

.sign-up {
    display: flex;
    align-items: center;
    position: absolute;
    top: 67px;
    right: 122px;
}

.sign-up span {
    font-weight: 600;
}

.btn-sign-up {
    background-color: #2A3647;
    color: white;
    margin-left: 25px;
}

.btn:hover {
    background-color: #2bbad6;
    color: white;
    box-shadow: 1px 4px rgba(0, 0, 0, 0.3);
}

.card {
    width: 652px;
    height: 493px;
    background-color: white;
    border-color: white;
    border-radius: 30px;
    position: absolute;
    top: 265.5px;
    left: calc(50% - 325px);
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-title {
    width: 315px;
    display: flex;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.log-in {
    width: 422px;
    height: 196px;
}

.card-title::after {
    width: 130px;
    height: 3px;
    content: '';
    position: absolute;
    background: #2bbad6;
    top: 135px;
    left: 0;
    right: 0;
    margin: auto;
}

.input-container {
    display: flex;
    height: 152px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.input-field {
    width: 422px;
    position: relative;
}

.input-field input {
    cursor: pointer;
    padding-right: 45px;
}

.input-field input::placeholder {
    opacity: 0.5;
}

.input-field .icon {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 5px;
    top: 20px;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
}

.error {
    display: block !important;
}

.error-message {
    color: red;
    font-size: small;
}

.email-icon {
    background-image: url('/img/login-register/email.png');
    width: 20px;
    height: 16px !important;
    margin: 0 5px 0 0;
}

.keyhole-icon {
    background-image: url('/img/login-register/keyhole.png');
    width: 16px;
    height: 21px !important;
    margin: 0 2px 0 0;
}

.remember {
    margin-left: 25px;
    font-size: 14px;
}

.remember input {
    margin-right: 10px;
    cursor: pointer;
}

.log-in-buttons {
    width: 322px;
    height: 48px;
    margin: 25px 0 0 40px; 
}

.btn-log-in {
    width: 110px;
    height: 48px;
    background-color: #2A3647;
    color: white;
    font-weight: 700;
    font-size: larger;
    margin: 0 30px 0 0;
    border-radius: 8px;
}

.btn-guest {
    width: 177px;
    height: 48px;
    color: #2A3647;
    font-weight: 700;
    font-size: larger;
    border: 1px solid #2A3647;
    border-radius: 8px;
}

.footer {
    position: absolute;
    bottom: 50px;
    left: calc(50% - 83px);
}

.footer a {
    text-decoration: none;
    font-size: smaller;
    color: black;
    opacity: 0.5;
    margin: 5px;
    padding: 1.9px;
}

.footer a:hover {
    color: #2bbad6;
    font-weight: 700;
    opacity: 1;
    padding: 0;
}

@keyframes startAnimationContainer {
    0% {
      transform: translate(-0%, -0%) scale(1);
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
    }
    100% {
      transform: translate(-45%, -48%) scale(100px, 122px);
      top: 5%;
      left: 10%;
      width: 100px;
      height: 122px;
    }
  }

  @keyframes startAnimationLogo {
    0% {
      transform: translate(-0%, -0%) scale(1);
      top: 0;
      left: 0;
      width: 274px;
      height: 334px;
    }
    100% {
      transform: translate(-45%, -48%) scale(100px, 122px);
      top: 5%;
      left: 10%;
      width: 100px;
      height: 122px;
    }
  }

  .start-image-container {
    animation: startAnimationContainer 1000ms ease-in-out;
  }

  .start-image {
    animation: startAnimationLogo 1000ms ease-in-out;
  }