* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Public Sans", sans-serif;
}

.container {
    display: flex;
    width: 850px;
    max-width: 90%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.wrapper {
    height: 100vh;
    background-color: #f1f2fa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left {
    background: #1e1e1e;
    background: url("../images/authentication-background-W3Sfbzl.png") no-repeat center center;
    background-size: cover;
    color: white;
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.authentication-successful-bg {
    background: url("../images/authentication-successful-background-IpPKkhk.png") no-repeat center center;
    background-size: cover;
    color: white;
}

.authentication-error-bg {
    background: url("../images/authentication-error-background-v36eqCg.png") no-repeat center center;
    background-size: cover;
    color: white !important;
}

.login-btn {
    margin: 0 auto;
    display: flex;
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 10px 60px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-decoration: none;
}

.login-btn:hover {
    background: white;
    color: #0e0e0e;
}

.right {
    flex: 1;
    background: white;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

form input {
    box-sizing: border-box;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 300;
    color: #0e0e0e;
    margin-top: 10px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

form input:focus {
    outline: none;
    border-color: #0e0e0e;
}

.field ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.field ul li {
    margin: 3px 0 5px;
    padding: 0;
    color: #FF5246;
    font-size: 13px;
    font-weight: 300;
}

.signup-btn {
    margin-top: 20px;
    background: #0e0e0e;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background: #303030;
}

.application-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;

    img {
        width: 70px;
    }
}

.authentication-title,
.authentication-subtitle {
    text-align: center;
}

.authentication-title {
    font-size: 28px;
    margin: 0 0 10px;
}

.authentication-subtitle {
    font-size: 15px;
    color: #424242;
    margin: 0 0 20px;
}

.left .authentication-title {
    font-size: 36px;
}

.left .authentication-subtitle {
    font-size: 17px;
    font-weight: 300;
    color: #fff;
}

.authentication-error {
    color: #FF5246;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 14px;
    text-align: center;
}

.authentication-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    color: #686868;

    svg {
        font-size: 16px;
    }
}

.icon-left {
    margin-right: 4px;
}

.icon-right {
    margin-left: 4px;
}

.authentication-forgot {
    font-size: 15px;
    color: #424242;
    transition: all 0.3s ease;
    margin-bottom: 6px;
    display: flex;

    a {
        margin-left: 3px;
        color: #686868;
        text-decoration-color: #202020;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 500;

        svg {
            font-size: 17px;
        }
    }

    a:hover {
        color: #202020;
    }
}

.home {
    display: grid;
    grid-template-columns: 0.95fr 3fr 1.25fr;
    width: 100%;
    /*flex-direction: column;*/
}

.home-sidebar {
    height: 100vh;
    background: #fff;
    border-radius: 0 20px 20px 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    font-family: "Public Sans", sans-serif;
}

.sidebar-user {
    display: flex;
    align-items: center;
}

.sidebar-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    margin-right: 15px;
}

.sidebar-user-info h4 {
    font-size: 18px;
    font-weight: bolder;
    margin: 0;
    cursor: default;
}

.sidebar-user-info span {
    font-size: 13px;
    color: #888;
    cursor: default;
}

.sidebar-nav .sidebar-link {
    gap: 12px;
    padding: 12px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    position: relative;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;

    svg {
        font-size: 20px;
    }
}

.sidebar-link:hover {
    background: #f4f4f4;
}

.sidebar-link.active {
    background: #ebebeb;
    color: #424242;
}

.sidebar-badge {
    background: #202020;
    color: #fff;
    font-size: 12px;
    padding: 2px 7px;
    border-radius: 10px;
    position: absolute;
    right: 12px;
}

.online-status {
    position: absolute;
    width: 13px;
    height: 13px;
    background-color: #4CAF50;
    border-radius: 50%;
    border: 2px solid white;
    bottom: 0;
    right: 10px;
    z-index: 1;
}

.sidebar-section-title {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #777;
    cursor: default;
}

.sidebar-sublink {
    padding: 8px 10px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
}

.sidebar-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-add-btn {
    width: 52px;
    height: 52px;
    background: #202020;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(25, 25, 35, 0.25);
    transition: all 0.3s ease;
}

.sidebar-add-btn:hover {
    background: #303030;
}

.sidebar-add-btn svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.sidebar-license {
    font-size: 12px;
    color: #aaa;
}

.balance {
    padding: 16px 12px;
    background: #e75b5b;
    background: url("../images/bg-GxdIsQ_.png") no-repeat left center;
    background-size: cover;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    cursor: default;
}

.balance-title {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-top: 0;
    margin-bottom: 4px;
}

.balance-text {
    font-size: 17px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;

    svg {
        font-size: 18px;
    }
}

.home-content {
    height: 100vh;
    padding: 35px 35px 10px;
    display: flex;
    flex-direction: column;
}

.home-content-header {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;

    p {
        font-size: 23px;
        font-weight: bold;
        color: #202020;
        margin: 0;
    }

    span {
        font-size: 16px;
        font-weight: 400;
        color: #777;
        margin-top: 0;
        margin-left: auto;
    }
}

.home-content-header-additional-info {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-content-header-icon {
    margin-top: 0;
    margin-left: auto;
    width: 36px;
    height: 36px;
    background: #202020;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    svg {
        font-size: 20px;
        color: #fff;
    }
}

.home-content-header-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    background: #202020;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: auto;
    box-shadow: 0 4px 12px rgba(25, 25, 35, 0.25);

    svg {
        font-size: 19px;
        margin-left: 6px;
    }
}

.home-content-header-btn:hover {
    background: #303030;
}

.home-content-header-text {
    font-size: 16px;
    font-weight: 300;
    color: #777;
    margin: 0;
    cursor: default;
}

.home-content-title {
    margin: 30px 0 15px;
    font-size: 15px;
    font-weight: 300;
    color: #777;
    cursor: default;
}

.information-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    cursor: default;
}

.information-block {
    background: #202020;
    /*background-size: cover;*/
    padding: 30px 30px 45px;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(25, 25, 35, 0.25);
}

.card-1 {
    background: url("../images/card1-afFMiEv.png") no-repeat center center;
}

.card-2 {
    background: url("../images/card2-RMf9z_E.png") no-repeat center center;
}

.information-block-type {
    padding: 4px 16px;
    border-radius: 16px;
    background: #393939;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    display: flex;
    width: min-content;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.information-block-text {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin: auto 0 0;
}

.information-block-subtext {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    margin: 6px 0 0;
}

.home-other {
    height: 100vh;
    padding: 35px;
    border-left: 1px solid #ddd;
}

.home-other-calendar {
    margin: 20px 0;
}

.home-other-calendar-title {
    font-size: 16px;
    font-weight: 400;
    color: #777;
    margin: 0 0 10px;
    cursor: default;
}

.home-other-calendar-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.home-other-calendar-item {
    display: grid;
    grid-template-columns: 60px auto;
    align-items: center;
}

.home-other-calendar-item-container {
    display: grid;
    grid-template-columns: auto 30px;
    grid-gap: 8px;
    align-items: center;
    width: 100%;
}

.home-other-calendar-item-time {
    font-size: 16px;
    color: #202020;
    font-weight: bold;
    border-right: 3px solid #FF5246;
    padding: 10px 10px 10px 0;
    cursor: default;
    height: 100%;
    text-align: center;
}

.home-other-calendar-item-description {
    margin-left: 10px;
    cursor: default;
}

.home-other-calendar-item-type {
    font-size: 12px;
    font-weight: 300;
    color: #777;
    margin: 0 0 4px;
}

.home-other-calendar-item-title {
    font-size: 14px;
    font-weight: 400;
    color: #202020;
    margin: 0;
}

.home-other-calendar-item-btn {
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;

    svg {
        font-size: 20px;
        width: 20px;
    }
}

.home-other-calendar-item-btn:hover {
    background: #e6e6e6;
}

.progress-bar {
    border-radius: 10px;
    background: #dddee7;
    width: 140px;
}

.progress-bar-fill {
    background: #89899c;
    height: 8px;
    width: 100%;
    border-radius: 8px;
}


.daily-statistics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.daily-statistics-item {
    background: white;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    align-items: center;
    /*border: 1px solid #ddd;*/
    box-shadow: 0 2px 6px rgba(25, 25, 35, 0.25);
    flex-direction: column;
    position: relative;
}

.daily-statistics-data-block {
    display: flex;
    align-items: center;
    width: 100%;
}

.daily-statistics-description {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.daily-statistics-item-title {
    font-size: 17px;
    font-weight: 300;
    color: #202020;
    margin: 0;
}

.daily-statistics-item-value {
    font-size: 36px;
    font-weight: 600;
    color: #202020;
    margin: 0;
    display: flex;

    span {
        display: block;
        margin-left: 4px;
        margin-bottom: auto;
        font-size: 13px;
        font-weight: 600;
        padding: 2px 3px;
        border-radius: 4px;
    }
}

.positive {
    color: #32AE60;
    background: rgba(50, 174, 96, 0.5);
}

.negative {
    color: #FF5246;
    background: rgba(255, 82, 70, 0.5);
}

.daily-statistics-item-info {
    font-size: 14px;
    font-weight: 300;
    color: #777;
    margin: 6px 0 0;
    display: flex;
    gap: 4px;
}

.daily-statistics-item-info-yesterday {
    font-size: 15px;
    font-weight: 300;
    color: #202020;
    margin: 0;
    display: flex;
    gap: 4px;

    b {
        font-weight: 600;
    }
}

.daily-statistics-item-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
    /*background: rgba(32, 32, 32, 0.3);*/
    background: url("../images/bg-GxdIsQ_.png") no-repeat left center;
    background-size: cover;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;

    svg {
        font-size: 32px;
    }
}

.progress {
    width: 100px;
    height: 100px;
    background: red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-family: sans-serif;
}

.number {
    width: 93%;
    height: 93%;
    background: white;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

.progress {
    --progress: 75;
    --outline: red;
    background: conic-gradient(
            var(--outline) 0% calc(var(--progress) * 1%),
            transparent calc(var(--progress) * 1%) 100%
    );
}

.chart-data {
    font-size: 10px;
    font-weight: 600;
}

#chart-wrap {
    padding: 0;
    margin: 10px 0 0;
    width: 100%;
}

.footer {
    margin: auto 0 0;
    width: 100%;
}

.footer-text {
    font-size: 12px;
    color: #777;
    text-align: center;
    width: 100%;
}
