.login-content {

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 120px 0;

}

.login-content-title {

  color: var(--Gray-600, #000);
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

  width: 80%;

}

.login-content-desc {

  text-align: center;

  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  padding: 40px 0 0 0;

  width: 80%;

}

.login-content-btn-a {

  margin: 16px auto 120px auto;
 
  display: flex;

  width: 286px;
  height: 64px;
  padding: 8px 28px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;

  border: 1px solid #F2001C;
  border-radius: 32px;
  background: var(--Red-500, #F2001C);

}

.login-content-btn-a :hover {

  display: flex;
  width: 286px;
  height: 64px;
  padding: 8px 28px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  
  color: #F2001C;
  border: 1px solid #F2001C;
  border-radius: 32px;
  background: var(--Red-500, #FFF);

}

.login-content-btn-label {
  
  display: inline-block;
  
  color: var(--White, #FFF);
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.login-content-service {

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 100%;

}

.login-content-service-content.berth {

  background: url('../../assets/img/login/Berth.jpg');
  background-color: lightgray 50%;
  background-size: cover;
  background-repeat: no-repeat;

}

.login-content-service-content.fleet {

  background: url('../../assets/img/login/Fleet.jpg');
  background-color: lightgray 50%;
  background-size: cover;
  background-repeat: no-repeat;

}

.login-content-service-content.driver {

  background: url('../../assets/img/login/Driver.jpg');
  background-color: lightgray 50%;
  background-size: cover;
  background-repeat: no-repeat;

}

.login-content-service-content.vista {

  background: url('../../assets/img/login/Vista.jpg');
  background-color: lightgray 50%;
  background-size: cover;
  background-repeat: no-repeat;

}

.login-content-service-content {

  width: 360px;
  height: 200px;
  flex-shrink: 0;

  border-radius: 16px;

  /* Default */
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.08);

  transition: 0.4s;

}

.login-content-service a{

  margin: 20px 0 0 0;

}

.login-content-service-content:hover{

  opacity: 0.6;
  transition: 0.4s;

}

.login-content-contact {

  padding: 100px 0 100px 0;

  color: #000;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

}

.login-content-contact-list {

  list-style: disc;

  padding: 19px 0 0 20px;

}

@media screen and (min-width: 1000px) {

  .login-content-title {

    color: var(--Gray-600, #000);
    text-align: center;
    font-family: Noto Sans JP;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  
    width: 80%;
  
  }
  
  .login-content-desc {
  
    text-align: center;
  
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  
    padding: 40px 0 0 0;
  
    width: 80%;
  
  }

  .login-content-service {

    display: flex;
    flex-direction: row;
    justify-content: center;
  
    padding: 16px 0 0 0;
  
  }

  .login-content-service a{

    margin: 0 20px 0 4px;
  
  }

  .login-content-service-content {

    width: 360px;
    height: 200px;
    flex-shrink: 0;
  
    border-radius: 16px;
  
    /* Default */
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.08);

    transition: 0.4s;

  }


}

