.panel {
    width: 100%;
    background-color: #ebf6f6;
    padding: 15px;
    font-family: Poppins, sans-serif;
    border-radius: 5px;
}

.panel-title {
    margin: 10px 0 25px;
    font-size: 25px;
}

.panel button {
    border: none;
    background-color: transparent;
}

.panel-default {
    border:none;
}
.panel-body {
    padding: 0;
}

.panel-link,
.panel-forgot-password #cancel,
.panel a {
    font-size: 13px;
    font-weight: 700;
    color: #184A4E;
    width: fit-content;
}
.panel-link:hover,
.panel-forgot-password .buttons #cancel:hover,
.panel a:hover {
    color: #4CAEA8;
    text-decoration: none;
}

/* panel sign in */
.panel-sign-in .buttons {
    justify-content: end;
}

.panel-sign-in button#next {
    width: fit-content;
    align-self: end;
}

.panel-employee-login {
    border-top: 1.5px dashed #4CAEA8;
    margin-top: 36px;
    text-align: center;
    padding: 25px 0 10px;
}

/*panel change password*/
.panel-change-password .buttons {
    flex-direction: column;
    gap: 15px;
}

.panel-change-password .attrEntry {
    margin-bottom: 32px;
}

/* panel forgot password*/
.panel-forgot-password .buttons button#continue {
    margin-top: 15px;
}

.panel-change-password button#cancel {
    display: block;
}

.panel-change-password button#cancel::before  {
    content: "";
}

.panel-forgot-password #continue,
.panel-forgot-password #emailVerificationControl_but_send_code {
    width: 100%;
}

/* Desktop */
@media only screen and (min-width: 1200px) {
    .container {
        display: flex;
    }
    .panel {
        width: 456px;
        background-color: #ebf6f6;
        border-radius: 0px 80px 0px 0px;
        padding: 45px 55px 40px;
    }
}