html {
    min-width: 320px;
    font-size: 10px;
    scroll-behavior: smooth;
}
body {
    position: relative;
    margin: 0;
    min-height: 100vh;
    background-color: #f3f2f7;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 35rem;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 10px rgb(0 0 0 / 0.14);
    transform: translate(-50%,-50%);
}
.inner {
    padding: 3.82rem 3.3rem 4.44rem;
}

.logo-area {
    text-align: center;
}
.logo-area img {
    width: 15.456rem;
    height: 4.959rem;
    object-fit: contain;
}
.logo-area .title {
    margin: 1.17rem 0 2.97rem;
    color: #242021;
    font-size: 2rem;
    font-weight: bold;
    line-height: 2.7rem;
    transition: all .4s ease-in-out;
}

.input-area .input-form {
    margin-bottom: 0.91rem;
    padding: 0.53rem 0 0.33rem 2.11rem;
    height: 5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 1.2rem rgb(0 0 0 / 0.06);
    transition: all .4s ease-in-out;
}
.input-area .input-form label {
    display: block;
    color: #242021;
    font-size: 0.8rem;
    opacity: 0.57;
}
.input-area .input-form input {
    padding: 0;
    width: 80%;
    font-size: 1.4rem;
    background-color: #fff;
    border: none;
    box-shadow: 0 0 0 1000px #fff inset;
    line-height: 1.9rem;
    opacity: 0.57;
}
.input-area .input-form input:focus-visible {
    outline: 0;
}
.input-area .login-button {
    margin-top: 1.65rem;
    margin-bottom: 1.65rem;
    width: 100%;
    height: 4rem;
    color: #fff;
    font-size: 1.4rem;
    background-color: #00b074;
    border: none;
    border-radius: 0.8rem;
    transition: all .4s ease-in-out;
}
.input-area .login-button:hover {
    box-shadow: 0 6px 12px rgb(0 0 0 / 0.16);
}

.message-area .mdi {
    font-size: 42px;
}
.message-area .message-title {
    font-size: 1.6rem;
}
.message-area .message-description {
    color: rgba(59,64,67,0.5);
    font-size: 1.2rem;
}
.message-area .action-button {
    margin-top: 1.65rem;
    margin-bottom: 1.65rem;
    width: 100%;
    height: 4rem;
    color: #fff;
    font-size: 1.4rem;
    background-color: #00b074;
    border: none;
    border-radius: 0.8rem;
    line-height: 3rem;
    transition: all .4s ease-in-out;
}
.message-area .action-button:hover {
    box-shadow: 0 6px 12px rgb(0 0 0 / 0.16);
}

.error-message-area {
    background-color: #ffe7de;
    border: 1px solid red;
    border-radius: 0.5rem;
}
.error-message-area .error-message {
    color: red;
    font-size: 1.2rem;
}