label * {
    margin: 0;
    padding: 0;
}
label {
    p {
        margin-top: 18px;
        margin-bottom: 10px;
        font-weight: 500;
    }
    .la {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }
}

input[type=text] ,
input[type=email] ,
textarea ,
select
{
    background: #fff;
    width: 100%;
    padding: 10px;
    border: 1px solid rgb(188, 188, 188);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    &:hover {
        opacity: 0.5;
        transition: all 0.3s ease-in-out;
    }
    &:focus {
        transition: all 0.3s ease-in-out;
        border-bottom: 1px solid #1560BD;
        border-radius: 5px;
        opacity: 1;
    }
}

textarea { height: 80px; resize: vertical;}

input[type="file"]::file-selector-button {
  background: #fff;
  border: 1px solid rgb(188, 188, 188);
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  font-family: 'Noto sans JP' , sans-serif;
}

input[type="file"]::file-selector-button:hover {
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}

input[type="file"]::file-selector-button:active {
  opacity: 1;
  border-bottom: 1px solid #1560BD;
  transition: all 0.3s ease-in-out;
}

input[type="checkbox"] {
  width: 26px;
  height: 26px;
  border: 1px solid rgb(188, 188, 188);
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
    transition: all 0.3s ease-in-out;
}

input[type="checkbox"]:hover {
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

input[type="checkbox"]:checked {
  background: #fff;
  opacity: 1;
  border-bottom: solid #1560BD 1px;
    transition: all 0.3s ease-in-out;
}

input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 9px;
  height: 18px;
  border: solid #1560BD;
  border-width: 0 4px 4px 0;
}

input[type="checkbox"]:focus {
  outline: none;
}

.btnsubmit {
  background: linear-gradient(to right, #65defc, #938aff);
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 200px;
  height: 50px;
  box-shadow: 0 0 2px 0px gray;
}