/* font size */
.text-sm {
    font-size: 0.875rem;
  }
  
  .text-lg {
    font-size: 1.125rem;
  }
  
  .text-2xl {
    font-size: 1.5rem;
  }
  
  .label-require {
    font-size: 0.875rem;
    color: #FF4880;
    margin-left: 5px;
  }
  
  /* text color */
  .text-red {
    color: #FF4880;
  }
  
  .text-blue {
    color: #3E69C9;
  }
  
  .text-hover-while:hover {
    color: white;
  }
  
  /* text common */
  .title-orange {
    color: #EFA153;
    font-size: 2.625rem;
    font-weight: bold;
  }
  
  .description-orange {
    color: #43362E;
    font-size: 1.125rem;
    font-weight: bold;
  }
  
  /* button */
  .btn-coral {
    background-color: #F06B48;
    color: #fff;
    height: 40px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
  }
  
  .button-orange {
    background-color: #F06B48;
    width: 230px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 30px;
    -webkit-box-shadow: 0px 3px 6px #00000029;
            box-shadow: 0px 3px 6px #00000029;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
  }
  
  .btn-turquoise-green {
    background-color: #42D1A4;
    color: #fff;
    font-size: 1rem;
    height: 40px;
    width: 100%;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
  }
  
  /* input */
  label {
    margin-bottom: 5px;
    color: #43362E;
  }
  
  input {
    height: 30px;
    padding-left: 5px;
    display: inline-block;
    border: none;
    border: 1px solid #C1C1C1;
    border-radius: 5px;
  }
  
  /* override */
  input[type=checkbox] {
    width: 13px;
    height: 13px;
    border: 1px solid #707070;
    border-radius: 0px;
  }
  
  input[type=text]:focus, input[type=password]:focus {
    background-color: #ddd;
    outline: none;
  }
  
  .row {
    margin: 0;
  }
  
  a:hover {
    text-decoration: none;
  }
  /*# sourceMappingURL=common.css.map */