RegisterPage.scss 1.04 KB
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: rgb(245, 235, 223);
}

#body {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid;
  border-bottom: 2px solid;

  .register-box {
    border: 2px solid;
    width: 35%;
    height: 60%;
    margin-top: 30px;
    margin-bottom: 30px;
    h2 {
      text-align: center;
      margin-top: 20px;
      margin-bottom: 20px;
    }
  }
  .input-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    
    input {
      padding: 10px 0.1rem;
      background-color: rgb(255, 255, 255);
    }
  }
  .check-variable {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
  }
  .btn-area {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 35px;

    button {
      width: 120px;
      height: 40px;
      font-size: large;
      font-weight: bold;
      background-color:rgb(255, 253, 238);
      cursor: pointer;
    }
  }
}