.complaint
{
    width: 90%;
    margin: 0 auto;
}

.complaint > .title
{
    height: 60px;
    width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
}

.complaint > .title .name
{
    font-size: 18pt;
    font-weight: bold;
    color: rgba(0,0,0,0.6);
}

.line-separator
{
    position: relative;
    background-color: rgba(0,0,0,0.2);
    height: 1pt;
}

.complaint .contents
{
    font-size: 12pt;
    font-weight: bold;
    color: rgba(0,0,0,0.5);
    width: 40%;
    margin: auto;
    margin-top: 50px;
}

.complaint .contents .explain
{
    resize: none;
}

.complaint .contents .btn-register-complaint
{
    font-size: 12pt;
    font-weight: bold;
    color: white;
    background-color: #25A2DB;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    box-shadow: 3px 3px 7px rgba(0,0,0,0.4);
    border: none;
}

.form-group {
    position: relative;
}

.form-label {
    position: absolute;
    right: 3%;
    top: 10px;
    color: #999;
    font-size: 10pt;
    background-color: transparent;
    z-index: 10;
    padding: 0 5px;
    transition: transform 150ms ease-out, font-size 150ms ease-out;
    cursor: text;
}

.form-label.required
{
    color: #FF2929;
}

.register-stepper-body .form-label {
    right: 3%;
}

.forgot-password-stepper-body .form-label {
    right: 3%;
}

.focused .form-label {
    transform: translateY(-115%);
    cursor: default;
    font-size: 0.7em;
    background-color: white;
}

.form-input {
    position: relative;
    padding: 12px 0 5px 0;
    width: 100%;
    font-size: 10pt;
}

.form-input:focus,
.form-input.filled {
    padding: 0 8px;
}

.error.hide {
    display: none;
}

.error span {
    display: inline-block;
    font-size: 10pt;
}

.error .number {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #FF2929;
    color: #FFC2C2;
    text-align: center;
}

.error .text,
.form-group label.err {
    color: #FF2929;
}

.form-group input.err {
    border-color: #FF8989;
    background-color: #FFE9E5;
}

@media only screen and (max-width: 768px) {
    .complaint > .title
    {
        height: 30px;
    }

    .complaint > .title .name
    {
        font-size: 14pt;
    }

    .complaint .contents
    {
        font-size: 10pt;
        width: 80%;
        margin-top: 30px;
    }

    .complaint .contents .btn-register-complaint
    {
        font-size: 10pt;
    }

    .form-label {
        font-size: 8pt;
    }

    .form-input {
        font-size: 8pt;
    }

    .error span {
        font-size: 8pt;
    }

    .error .number {
        width: 12px;
        height: 12px;
    }
}