.montserrat-400 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.montserrat-700 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(128, 70, 182);
    width: 100vw;
    height: 100vh;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.wrapper {
    position: relative;
    width: 400px;
}

.image {
    width: 100%;
    display: block;
}

.container {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 20px);
    background-color: rgb(183, 146, 218);
    padding: 10px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 0 10px black;
}

.title {
    margin-top: 0;
    margin-bottom: 0;
}

.form {
    width: 100%;
    height: 100%;
}

.btn {
    width: 100%;
    font-size: 1.25rem;
    color: white;
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 10px 0px 10px 0px;
    text-align: center;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-r18 {
    background-color: #A42DC1;
}

.btn-r15 {
    background-color: #3FD19A;
}

.btn-nor {
    background-color: #CC2020;
}

.btn-agree {
    background-color: #14A507;
}

.password-input {
    width: 100%;
    border: none;
    border-radius: 10px;
    height: 2rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

.text-red {
    color: red;
}
