* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

  
@media only screen and (min-width: 768px) {
    /* For desktop: */
    .register {max-width: 375px;}
  }

body {
    background-color: #ffffff;
    margin: 0;
}
.register {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    margin: auto auto auto auto;
    padding: 10px 10px 10px 10px;
}
.register h1 {
    color: rgb(25, 42, 49);
    font-family: Roboto, sans-serif;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}

.register h2 {
    color: rgb(25, 42, 49);
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.register h3 {
    color: rgb(25, 42, 49);
    font-family: Roboto, sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-align: left;
}

.register p {
    color: rgb(50, 65, 71);
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
}

.register form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}

.register form input[type="password"], .register form input[type="text"], .register form input[type="email"] {
    width: 230px;
    height: 45px;
    border: 1px solid #dee0e4;
    margin-bottom: 20px;
    padding: 0 15px;
}
.register form input[type="submit"] {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background-color: #F6E9EE;
   border: 0;
    cursor: pointer;
    font-weight: bold;
    color: #a92758;
    transition: background-color 0.2s;
}
.register form input[type="submit"]:hover {
  background-color: #a92758;
  color: #ffffff;
    transition: background-color 0.2s;
}