.access-denied-page {
    text-align: center;
    padding: 50px 15px;
}
.access-denied-page img {
    max-width: 100%;
    height: auto;
}
.access-denied-page h1 {
    margin-top: 36px;
    margin-bottom: 10px;
    font-family: "Inter", sans-serif;;
    font-size: 29px;
    text-align: left;
    color: #1F2E35;
}
.access-denied-page p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    text-align: left;
}
.access-denied-page .btn {
    margin: 10px;
    min-width: 150px;
    background-color: #0088CE;
    color: #fff;
    border: none;
    padding: 13px 53px;
    border-radius: 5px;
    font-family: "Inter", sans-serif;;
    display: inline-block;
    text-decoration: none;
}
.access-denied-page .btn:hover {
    background-color: #006bb3;
}
body.accessDeniedpage {
    background-color: #F3F3F3;
}
.access-denied-page p {
    font-size: 15px;
    font-family: "Inter", sans-serif;;
    color: #000000;
}
.access-denied-main {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accessDeniedinner {
    background-color: #ffff;
    padding: 30px 85px;
    width: 39%;
    margin: 0 auto;
    border-radius: 5px;
}
.accessDeniedinner .logo {
    width: 300px;
}
@media screen and (max-width: 767px) {
    .accessDeniedinner {
        padding: 30px 30px;
        width: unset;
    }
    .access-denied-page .btn {
        min-width: 183px;
    }
}