body {
    overflow-y: hidden;
    padding-bottom: 0;
}
.ml-auto {
    margin-left: auto;
}
.bg-pink {
    background-color: rgba(255, 105, 105, 1);
}
.bg-blue {
    background-color: rgba(0, 177, 246, 1);
}
.header {
    display: flex;
    column-gap: 10px;
    padding: 56px 16px 0 16px;
}
.header .header-information {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
.header .header-information h4 {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
}
.header .header-information p {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    max-width: 177px;
}
.card {
    height: 100vh;
    border-radius: 28px 28px 0 0;
    padding: 35px 1rem 0 1rem;
}
.card .header {
    display: flex;
    padding: 0;
    margin-bottom: 18px;
}
.card .header h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 0;
}
.card .body {
    display: flex;
    flex-direction: column;
    padding: 0 0 0.8rem 0.5rem;
}
.card .body .action-container {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    margin-bottom: 35px;
}
.card .body .action-container .action-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 100%;
    height: 58px;
    box-shadow: 0px 4px 10px 0px rgba(195, 195, 195, 0.25);
    padding: 0 1rem;
    column-gap: 12px;
    background: none;
    background-color: transparent;
    outline: none;
    border: none;
}
.card .body .action-container .action-item:active {
    background-color: rgba(195, 195, 195, 0.25);
}
.card .body .action-container .action-item .image-container {
    height: 30px;
    width: 30px;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card .body .action-container .action-item .label-text {
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    color: #333;
}
.card .body .information-container {
    display: flex;
    flex-direction: column;
    row-gap: 17px;
}
.card .body .information-container h6 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
}
.card .body .information-container .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card .body .information-container .item .item-title {
    font-weight: 590;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
}
.card .body .information-container .item .item-subtitle {
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    text-align: right;
    color: rgba(153, 153, 153, 1);
}
.card .body .btn-danger {
    margin-top: 28px;
    width: 100%;
    font-weight: 500;
}
#form-profile-offcanvas,
#form-password-offcanvas {
    border-radius: 30px 30px 0 0;
    min-height: calc(100dvh - 175px);
}
#form-profile-offcanvas h5,
#form-password-offcanvas h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.45px;
}
#form-profile-offcanvas .offcanvas-body,
#form-password-offcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    overflow: hidden;
}
#form-profile-offcanvas .offcanvas-body .form-group {
    position: relative;
    height: 79px;
    width: 100%;
    display: flex;
}
#form-password-offcanvas .offcanvas-body .form-group {
    position: relative;
    height: 79px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
#form-password-offcanvas .offcanvas-body .form-group .text-error {
    margin: 4px 0;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.08px;
    color: #ff0000;
}
#form-profile-offcanvas .offcanvas-body .form-group input,
#form-password-offcanvas .offcanvas-body .form-group input {
    border: 1px solid rgba(229, 242, 255, 1);
    background-color: rgba(229, 242, 255, 1);
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    color: #333;
    padding: 20px 1rem;
}
#form-profile-offcanvas .offcanvas-body .btn-primary,
#form-password-offcanvas .offcanvas-body .btn-primary {
    width: 100%;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 164, 27, 1);
    color: #333;
    border-radius: 6px;
    border: 1px solid rgba(255, 164, 27, 1);
    margin-top: 15px;
}
#form-profile-offcanvas .offcanvas-body .btn-primary:active,
#form-password-offcanvas .offcanvas-body .btn-primary:active {
    background-color: #cc7a00 !important;
    border-color: #cc7a00 !important;
}
.alert {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -10;
}
.alert.show {
    z-index: 9999;
}
.alert.alert-primary {
    background-color: rgba(255, 164, 27, 1);
    color: #333;
    border-color: rgba(255, 164, 27, 1);
}
