LoginPage.scss 1.47 KB
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#body{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("../images/register_background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  .login-form {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    width: 500px;
    height: 620px;
    box-shadow: 0px 0px 20px #000;
  }
  h1 {
    font-size: 32px;
    color: black;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px ;
  }
  .input-area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    position: relative;
    margin-top: 20px;
    font-weight: bold;
    font-size: medium;

    &:first-child {
      margin-top: 0;
    }

    input {
      width: 100%;
      padding: 20px 10px 10px;
      background-color: transparent;
      border: none;
      border-bottom: 1px solid #999;
      font-size: 18px;
      color: white;
      outline: none;
    }

    label {
      position: absolute;
      left: 10px;
      top: -2px;
      font-size: 14px;
      color: white;
    }
  }
  .btn-area {
    display: flex;
    justify-content: center;
    margin-top: 20px;

    button {
      width: 50%;
      height: 40px;
      background: slateblue;
      font-size: 20px;
      color: white;
      font-weight: bold;
      border: none;
      border-radius: 25px;
      cursor: pointer;
    }
  }
}