@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    background-color: #f6f7f7;
    color: #182433;
    line-height: 24px;
}

header {
    background: #1d2327;
    display: flex;
    width: 100%;
}

header .logo {
    margin: 0px;
    display: flex;
}

header .logo a {
    margin: auto;
    border-radius: 0px 11px 0px 0px;
    margin-left: 0px;
    padding: 7px;
}

header .logo a.active {
    background: #f6f7f7;
}

header .logo a:hover,
header .logo a:focus {
    background: #f6f7f7;
}

header .logo img {
    height: 30px;
}

header .menu {
    margin-right: auto;
    display: flex;
}

header .menu ul {
    display: inline-flex;
    margin: auto 0px;
    padding: 0px;
    list-style: none;
}

header .menu ul li a {
    color: #b7b7b7;
    font-weight: normal;
    font-size: 14px;
    padding: 8px;
}

header .menu ul li a:hover,
header .menu ul li a:focus {
    background: #f6f7f7;
    border-radius: 11px 11px 0px 0px;
    color: #0263fa;
    padding-top: 5px;
}

header .menu ul li a.active {
    background: #f6f7f7;
    border-radius: 11px 11px 0px 0px;
    color: #0263fa;
    padding-top: 5px;
}

header .user-menu {
    margin-left: auto;
    display: flex;

}

header .user-menu ul {
    display: inline-flex;
    margin: auto 0px;
    padding: 0px;
    list-style: none;
}

header .user-menu ul li a {
    color: #b7b7b7;
    font-weight: normal;
    font-size: 14px;
    padding: 8px;
    height: 100%;
    display: block;
}

header .user-menu ul li a i {
    font-size: 16px;

}

header .user-menu ul .profile {}

header .user-menu ul .profile a:hover,
header .user-menu ul .profile a:focus {

    background: #f6f7f7;
    border-radius: 11px 0px 0px 0px;
    color: #0263fa;
    padding-top: 5px;
}

header .user-menu ul .profile:hover .dropdown,
header .user-menu ul .profile:focus .dropdown {
    display: block;
}


header .user-menu ul .profile .dropdown {
    display: none;
    position: absolute;
    right: 9px;
    background: #fff;
    border-radius: 9px;
    padding: 9px;
    -webkit-box-shadow: 3px 6px 9px -2px rgba(0, 0, 0, 0.44);
    box-shadow: 3px 6px 9px -2px rgba(0, 0, 0, 0.44);
    top: 4%;
    z-index: 1;
}

.app-content {
    display: flex;
}

.app-content .sidebar {
    width: 21%;
    padding: 13px;
    padding-top: 42px;
}

.app-content .sidebar ul {
    list-style: none;
    padding: 0px;
}

.app-content .sidebar ul>li {
    line-height: 38px;
    padding: 4px 14px;
    margin: 4px 0px;
}

.app-content .sidebar ul li.active {
    background: #e3e8fc;
    border-radius: 7px;
}

.app-content .sidebar ul li.active a {
    color: #0064fa;
}

.app-content .sidebar ul li:hover,
.app-content .sidebar ul li:focus {
    background: #e3e8fc;
    border-radius: 7px;
}

.app-content .sidebar ul li a {
    padding: 15px 0px;
    font-size: 14px;
    font-weight: normal;
    color: #000;
}

.app-content .sidebar ul li a i {
    font-size: 18px;
    padding: 0px;
    padding-right: 9px;
}

.app-content .content-site {
    display: none;
    width: 50%;
    padding: 0px;
    background: #fff;
    margin: 30px 8px;
    border-radius: 18px;
    height: 88vh;
}

.app-content .content-site .content-header-site {
    display: flex;
    border-bottom: 1px solid #00000024;
    padding: 29px 42px;
    padding-top: 33px;
    margin-bottom: 38px;
}

.app-content .content-site .content-body-site {
    overflow: auto;
}


.app-content .content-app {
    width: 77%;
    padding: 0px;
    background: #fff;
    margin: 30px 8px;
    border-radius: 18px;
    height: 88vh;
}

.app-content .content-app .content-header {
    display: flex;
    border-bottom: 1px solid #00000024;
    padding: 29px 42px;
    padding-top: 33px;
    margin-bottom: 38px;
}

.app-content .content-app .content-body {
    overflow: auto;
    height: 73%;
    display: block;
}


.btn.add-website {
    margin-left: auto;
    background: #3858e9;
    background-image: none;
    color: #fff;
    padding: 11px 18px;
    height: 41px;
    border-radius: 0px;
}

.btn.add-website:hover,
.btn.add-website:focus {
    color: #fff;
    background: #2242d2;
}

.site-thumb {
    display: inline-flex;
}

.site-thumb .site-preview {
    color: #2242d2;
    font-size: 37px;
    font-weight: 400;
    background: #f6f7f7;
    padding: 5px 20px;
    border-radius: 5px;
}

.site-thumb .site-content {
    margin: auto;
    margin-left: auto;
    font-size: 12px;
    margin-left: 15px;
}

.action .dropdown {
    display: none;
    /* Initially hidden */
    position: absolute;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 0 4px 1px rgba(0, 208, 228, .3), 0 0 0 1px #00d0e4;
    left: 0;
    /* Align the dropdown to the left edge of the button */
    top: 100%;
    /* Position the dropdown directly below the button */
    padding: 18px 10px;
    list-style: none;
    width: auto;
    z-index: 1000;
    /* Ensure dropdown appears on top of other elements */
}

.action {
    text-align: center;
    position: relative;
    /* Ensure .action is the reference point for positioning */
}

.action i {
    font-size: 19px;
}

.action:hover,
.action:focus {
    box-shadow: 0 0 4px 1px rgba(0, 208, 228, .3), 0 0 0 1px #00d0e4;
}

.action:hover .dropdown,
.action:focus .dropdown {
    display: block;
}

.form-control {
    padding: 9px 10px;
    border-radius: 3px;
    border: 1px solid #cbd6e2;
    font-size: 16px;
    transition: all .15s ease-out;
    background-color: #f5f8fa;
    color: #33475b;
    display: block;
    height: 40px;
    line-height: 22px;
    text-align: left;
    vertical-align: middle;
    width: 100%;
}

.btn-primary.active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary.active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled):active:hover,
.btn-primary .show .dropdown-toggle.btn-primary {
    background-color: #014fc4;
    color: #fff;
    border: 1px solid #014fc4;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(1, 79, 196);
    border-bottom: 1px solid #014fc4;
}

.btn-primary.hover:not(.active),
.btn-primary:hover:not(.active),
.btn-primary .show .dropdown-toggle.btn-primary {
    background-color: #014fc4;
    color: #fff;
    border: 1px solid #014fc4;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(1, 79, 196);
    border-bottom: 1px solid #014fc4;
}

.form-control:focus {
    border-color: rgba(0, 208, 228, .5);
    box-shadow: 0 0 4px 1px rgba(0, 208, 228, .3), 0 0 0 1px #00d0e4;
    outline: 0;
    background-color: #f5f8fa;
}

label {
    padding: 12px 0px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #182433;
}

.mb-20 {
    margin-bottom: 20px;
}

.register-container {
    width: 450px;
    margin: auto;
    height: 100%;
}

.login-logo {
    height: 68px;
    margin-top: 25px;
}

.register-logo {
    height: 50px;
    position: absolute;
    left: 12px;
    top: 9px;
}

.already-register {
    position: absolute;
    top: 13px;
    right: 24px;
}

.secondary-title {
    font-size: 15px;
    margin: 16px auto;
    font-weight: 400;
}

.sign-up-now {
    color: #0064fa;
    font-weight: 500;
    font-size: 17px;
}

.btn.microsoft-sign-in,
.btn.google-sign-in {
    padding: 15px;
    width: 100%;
}

.btn.microsoft-sign-in img,
.btn.google-sign-in img {
    height: 24px;
    margin-right: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
}

.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: #0064fa;
    border: 1px solid #0064fa;
    border-bottom-width: 1px;
    font-weight: 500;
}

a {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    -moz-osx-font-smoothing: grayscale;
    color: #0091ae;
    cursor: pointer;
}

a:hover {
    color: #007a8c;
}

.btn-login {
    width: 100%;
    padding: 12px;
    font-weight: bold;
}

.btn-primary.disabled,
.btn-primary.disabled:hover,
.btn-primary.disabled:focus,
.btn-primary.disabled:active,
.btn-primary.disabled.active,
.btn-primary[disabled],
.btn-primary[disabled]:hover,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:active,
fieldset[disabled] .btn-primary.active {
    background-color: #0064fa;
    border: 1px solid rgb(0, 100, 250);
}

.text-center {
    text-align: center;
}

.btn {
    border-radius: 4px;
}

hr {
    border: 1px solid #00000024;
    width: 100%;
    margin: 27px 0px;
}

.stats-sparkline__bar {
    fill: #3498db;
}

#stats-sparkline-container svg {
    border-bottom: 1px solid #439fdd;
}

.progress {
    height: 11px;
    background-color: rgba(63, 63, 63, 0.2);
    background-image: none;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 20px;
}

.progress-bar {
    box-shadow: none;
    border-radius: 0;
    background-color: #2d80fd;
    background-image: none;
    -webkit-transition: all 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.text-information {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #666;
}

.p-t-15perc {
    padding-top: 15%;
}

.head-register {
    text-align: center;
}

.head-register h1 {
    font-size: 42px !important;
}

.head-register h5 {
    font-weight: 400 !important;
}

.otp-form .otp-field {
    display: inline-block;
    width: 3rem;
    height: 4rem;
    font-size: 2rem;
    line-height: 4rem;
    text-align: center;
    border: none;
    border-bottom: 2px solid #0091ae;
    outline: none;
    margin: 9px;
}

.otp-form .otp-field:focus {
    border-bottom-color: #0091ae !important;
}

.register-form .form-control {
    border-radius: 0px;
    border: 0px solid rgb(0, 164, 189);
    border-bottom: 2px solid rgb(0, 164, 189);
    background-color: transparent;
}

.checking_password {
    list-style: none;
    padding: 0;
    display: grid;
    margin-top: 31px;
}

.checking_password li {
    display: inline-flex;
    font-size: 14px;
    font-weight: normal;
    margin: 4px 0px;
    padding: 0px;
}

.checking_password .check_password {
    width: 13px;
    height: 13px;
    background: #fff;
    display: block;
    border-radius: 1000%;
    border: 1px solid #ccc;
    margin: 6px;
}

.checking_password .check_password.active {
    background: #00d0e4;
    border-color: #0091ae;
}

.ml-3 {
    margin-left: 3px;
}

.p-0 {
    padding: 0px;
}

.m-t-10 {
    margin-top: 10px;
}

.btn-checkbox-register {
    width: 100%;
    height: 65px;
    border: 2px solid #92cfdc;
    color: #374659;
    margin: 12px 0px !Important;
}

.btn-checkbox-register.hover:not(.active),
.btn-checkbox-register:hover:not(.active),
.btn-checkbox-register .show .dropdown-toggle.btn-checkbox-register {
    background-color: #e8f5f8;
    border: 2px solid #92cfdc;
    color: #374659;
}

.back {
    background: transparent;
    color: #182433;
    border: 0px;
    position: absolute;
    top: 12%;
    left: 2%;
    font-size: 18px;
    font-weight: bold;
}

.back:hover {
    color: #2d80fd;
}

/* Media Queries for Responsiveness */

/* Small devices (phones, less than 768px) */
@media (max-width: 767px) {
    .register-container {
        width: 90%;
        margin: 20px auto;
    }

    .head-register h1 {
        font-size: 32px !important;
    }

    .form-control {
        font-size: 14px;
        height: 36px;
    }

    .btn-login {
        padding: 10px;
        font-size: 14px;
    }

    .secondary-title {
        font-size: 14px;
    }

    .sign-up-now {
        font-size: 15px;
    }

    .otp-form .otp-field {
        width: 2.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
        line-height: 3.5rem;
        margin: 5px;
    }

    .checking_password li {
        font-size: 12px;
    }

    .btn-checkbox-register {
        height: 55px;
    }

    .back {
        top: 10%;
        font-size: 16px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .register-container {
        width: 75%;
    }

    .head-register h1 {
        font-size: 36px !important;
    }

    .form-control {
        font-size: 15px;
        height: 38px;
    }

    .btn-login {
        padding: 11px;
        font-size: 15px;
    }

    .otp-form .otp-field {
        width: 2.8rem;
        height: 3.8rem;
        font-size: 1.8rem;
        line-height: 3.8rem;
        margin: 7px;
    }

    .btn-checkbox-register {
        height: 60px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .register-container {
        width: 60%;
    }

    .form-control {
        font-size: 16px;
        height: 40px;
    }

    .btn-login {
        padding: 12px;
        font-size: 16px;
    }

    .otp-form .otp-field {
        width: 3rem;
        height: 4rem;
        font-size: 2rem;
        line-height: 4rem;
        margin: 9px;
    }

    .btn-checkbox-register {
        height: 65px;
    }
}


/* Mobile-first styles (small devices, less than 768px) */
@media (max-width: 767px) {
    .app-content {
        flex-direction: column;
        /* Stack sidebar and content vertically */
    }

    .app-content .sidebar {
        width: 100%;
        /* Full-width sidebar on mobile */
        padding: 10px;
    }

    #account_detail_mobile {
        display: block;
    }

    #account_detail_username {
        display: none;
    }


    .app-content .content-app,
    .app-content .content-site {
        width: 100%;
        /* Full-width content on mobile */
        margin: 15px 0;
    }

    /* Adjust content-app when content-site is visible */
    .app-content.show-content-site .content-app {
        width: 100%;
        margin: 0;
    }

    .app-content.show-content-site .content-site {
        width: 100%;
        display: block;
    }

    /* Adjust table columns for mobile */
    .app-content .content-app table thead th:nth-child(2),
    .app-content .content-app table thead th:nth-child(3),
    .app-content .content-app table thead th:nth-child(4),
    .app-content .content-app table thead th:nth-child(5) {
        display: none;
        /* Hide all columns except the first and last */
    }

    /* Dropdown positioning for mobile */
    .action .dropdown {
        left: 0;
        right: auto;
        width: 100%;
        /* Make the dropdown full-width on mobile */
        top: 100%;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .app-content {
        flex-direction: column;
        /* Stack sidebar and content vertically */
    }

    #account_detail_mobile {
        display: block;
    }

    #account_detail_username {
        display: none;
    }

    .app-content .sidebar {
        width: 100%;
        /* Full-width sidebar on tablets */
        padding: 10px;
    }

    .app-content .content-app,
    .app-content .content-site {
        width: 100%;
        /* Full-width content on tablets */
        margin: 15px 0;
    }

    /* Adjust content-app when content-site is visible */
    .app-content.show-content-site .content-app {
        width: 60%;
        margin: 0;
    }

    .app-content.show-content-site .content-site {
        width: 40%;
        display: block;
    }

    /* Adjust dropdown positioning */
    .action .dropdown {
        left: 0;
        right: auto;
        width: auto;
        /* Keep dropdown narrow but aligned left */
    }
}

/* Larger devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .app-content {
        flex-direction: row;
        /* Keep sidebar and content side-by-side */
    }

    #account_detail_mobile {
        display: none;
    }

    #account_detail_username {
        display: block;
    }

    .app-content .content-app,
    .app-content .content-site {
        width: 77%;
        /* Maintain initial layout on larger screens */
        margin: 30px 8px;
    }

    /* Adjust content-app when content-site is visible */
    .app-content.show-content-site .content-app {
        width: 50%;
    }

    .app-content.show-content-site .content-site {
        width: 50%;
        display: block;
    }

    /* Dropdown positioning */
    .action .dropdown {
        left: 0;
        width: auto;
    }
}