#loggedOutView .welcome-section {
  padding: 40px 0;
  display: flex;
  align-items: center;
}

#loggedOutView .welcome-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#loggedOutView .welcome-section h2 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #0D6CBE;
  margin-bottom: 16px;
}

#loggedOutView .welcome-section .sub-title {
  margin-bottom: 16px;
}

#loggedOutView .welcome-section p {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #454545;
  line-height: 1.5;
  white-space: pre-wrap;
}

#loggedOutView .partner-section {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loggedOutView .partner-section .partner-label {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #454545;
  background-color: #EFEFEF;
  padding: 8px 12px;
  border-radius: 4px;
}

#loggedOutView .partner-section img {
  margin-left: 16px;
  width: 77px;
  height: 32px;
}

#loggedOutView .action-card {
  background-color: #FFFFFF;
  border: 1px solid #DBDBDB;
  border-radius: 8px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 24px;
}

#loggedOutView .action-card .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#loggedOutView .action-card h4 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
}

#loggedOutView .action-card p {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #454545;
  margin: 0;
}

#loggedOutView .action-card .btn {
  width: 100%;
  margin-top: auto;
  padding: 14px 0;
  border-radius: 5px;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  border: none;
  text-align: center;
  text-decoration: none;
  margin: 0;
}

#loggedOutView .register-card h4 {
  color: #FD9841;
}

#loggedOutView .register-card .btn {
  background-color: #FD9841;
  color: #FFFFFF;
  transition: .2s;
}

#loggedOutView .register-card .btn:hover {
  background-color: #F28121;
}

#loggedOutView .login-card h4 {
  color: #0D6CBE;
}

#loggedOutView .login-card .btn {
  background-color: #0D6CBE;
  color: #FFFFFF;
}

#loggedOutView .login-card .btn:hover {
  background-color: #065DA7;
}

#loggedOutView .action-section .row .row-cell {
  flex-grow: 1;
}

#loggedOutView .action-section{
  padding: 36px 32px;
}

@media (min-width: 992px) {
  #loggedOutView .action-section{
    padding: 36px 24px;
  }

  #loggedOutView .action-section .row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    flex-wrap: nowrap;
  }

  #loggedOutView .welcome-section {
    background: url('../img/key-background-desktop.png') no-repeat center;
    background-size: cover;
    height: 40vh;
  }
}



@media (min-width: 541px) and (max-width: 991px) {
  #loggedOutView .action-section .row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
  }

  #loggedOutView .welcome-section {
    background: url('../img/key-background-tablet.png') no-repeat center;
    background-size: cover;
  }
}

@media (max-width: 540px) {
  #loggedOutView .action-section{
    padding: 18px 24px;
  }

  #loggedOutView .action-section .row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }

  #loggedOutView .welcome-section {
    background: #FFFFFF;
  }

  #loggedOutView .welcome-section h2 {
    font-size: 24px;
    color: #0D6CBE;
    margin-bottom: 16px;
  }
}