﻿/*--------common-----------*/

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: #141414;
    text-decoration: none;
}

    a:hover {
        color: #f68d2e;
    }

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

input {
    font-size: 16px;
    line-height: 1.5;
}

.ds-selector {
    border: transparent !important;
    background-color: #f68d2e !important;
    opacity: 0.25 !important;
    border-radius: 6px;
}

.hover:hover {
    color: inherit;
}

.dropdown-item {
    border-radius: 6px;
}

.main {
    display: block;
    min-height: calc(100vh - 84px);
}

/*--------footer-----------*/

.footer {
    align-self: flex-start;
    display: flex;
    -webkit-box-pack: start;
    justify-content: start;
    -webkit-box-align: start;
    align-items: start;
    flex-flow: row nowrap;
    padding: 32px;
}

    .footer p {
        color: rgb(115, 115, 115);
        margin-block: unset;
        font-family: Inter;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
    }

/*--------login page-----------*/

.login-page {
    background-color: rgb(255, 255, 255);
    min-height: calc(100vh - 84px);
    margin: auto;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    flex-flow: column nowrap;
    width: 488px;
    padding: 24px 36px;
}

    .login-page .header {
        margin-bottom: 48px;
    }

    .login-page .title {
        display: flex;
        -webkit-box-pack: start;
        justify-content: start;
        -webkit-box-align: center;
        align-items: center;
        flex-flow: column nowrap;
        margin-bottom: 32px;
    }

        .login-page .title div {
            margin-bottom: 12px;
        }

            .login-page .title div h1 {
                color: #141414;
                font-family: Inter;
                font-style: normal;
                margin-block: unset;
                font-weight: 700;
                font-size: 30px;
                line-height: 38px;
            }

        .login-page .title p {
            color: #737373;
            margin-block: unset;
            font-family: Inter;
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: rgb(115, 115, 115);
        }

    .login-page .form-label p {
        margin-block: unset;
        font-family: Inter;
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        color: rgb(20, 20, 20);
    }

    .login-page .username-wrapper {
        position: relative;
    }

        .login-page .username-wrapper input {
            display: block;
            padding: 10px 14px;
            gap: 10px;
            border-radius: 8px;
            outline: none;
            width: 100%;
            border: 1px solid rgb(20, 20, 20);
            box-shadow: rgba(16, 24, 40, 0.05) 0px 1px 2px;
        }

            .login-page .username-wrapper input:focus {
                margin: -1px;
                border: 2px solid rgb(246, 141, 46);
            }

    .login-page .password-input {
        display: flex;
        flex: 1 1 0%;
        border-right: 0px;
        padding: 10px 14px;
        gap: 10px;
        border-radius: 8px;
        outline: none;
        width: 100%;
        border: 1px solid rgb(20, 20, 20);
        box-shadow: rgba(16, 24, 40, 0.05) 0px 1px 2px;
        border-right-style: none;
        border-right-width: 0px;
    }

        .login-page .password-input:focus {
            margin: -1px;
            border: 2px solid rgb(246, 141, 46);
        }

    .login-page .show-password {
        background-color: transparent;
        box-shadow: rgba(16, 24, 40, 0.05) 0px 1px 2px;
        border-width: 1px 1px 1px 0px;
        border-top-style: solid;
        border-right-style: solid;
        border-bottom-style: solid;
        border-top-color: rgb(20, 20, 20);
        border-right-color: rgb(20, 20, 20);
        border-bottom-color: rgb(20, 20, 20);
        border-image: initial;
        border-left-style: none;
        border-left-width: 0px;
        cursor: pointer;
    }

        .login-page .show-password svg {
            width: 24px;
            color: rgb(163, 163, 163);
        }

    .login-page .feedback {
        font-size: 14px;
        margin-top: 4px;
        min-height: 24px;
    }

    .login-page .remember-me-wrapper {
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        align-items: start;
        flex-flow: row nowrap;
    }

        .login-page .remember-me-wrapper .remember-me {
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: rgb(66, 66, 66);
        }

            .login-page .remember-me-wrapper .remember-me input {
                cursor: pointer;
                border-radius: 6px;
                border: 1px solid rgb(20, 20, 20);
            }

                .login-page .remember-me-wrapper .remember-me input:focus {
                    box-shadow: rgb(254, 224, 184) 0px 0px 0px 4px;
                }

                .login-page .remember-me-wrapper .remember-me input:checked[type="checkbox"] {
                    background-image: url("../img/check.svg");
                    background-size: 10px;
                    background-color: rgb(254, 243, 226);
                    border: 1px solid rgb(246, 141, 46);
                }

            .login-page .remember-me-wrapper .remember-me .remember-me-text {
                margin-block: unset;
                font-family: Inter;
                font-style: normal;
                font-weight: 500;
                font-size: 14px;
                line-height: 20px;
            }

        .login-page .remember-me-wrapper .forgot-password-link {
            color: rgb(246, 141, 46);
        }

            .login-page .remember-me-wrapper .forgot-password-link p {
                margin-block: unset;
                font-family: Inter;
                font-style: normal;
                font-weight: 700;
                font-size: 14px;
                line-height: 20px;
            }

    .login-page .sign-in-wrapper {
        margin-bottom: 16px;
    }

    .login-page button {
        display: flex;
        flex-direction: row;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        color: rgb(255, 255, 255);
        border: none;
        background-color: rgb(246, 141, 46);
        gap: 3px;
        border-radius: 8px;
        text-align: center;
        transition: all 200ms ease 0s;
        box-shadow: rgba(16, 24, 40, 0.05) 0px 1px 2px;
        margin-block: unset;
        font-family: Inter;
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 28px;
        padding-top: 16px;
        padding-bottom: 16px;
        width: 100%;
    }

        .login-page button:hover {
            background-color: rgb(239, 128, 43);
        }

        .login-page button:focus {
            box-shadow: rgba(16, 24, 40, 0.05) 0px 1px 2px, rgb(254, 224, 184) 0px 0px 0px 4px;
        }

        .login-page button.sign-in-google {
            background-color: rgb(255, 255, 255);
            color: rgb(66, 66, 66);
            border: 1px solid rgb(214, 214, 214);
        }

            .login-page button.sign-in-google .sign-in-google-content {
                display: flex;
                -webkit-box-pack: start;
                justify-content: start;
                -webkit-box-align: center;
                align-items: center;
                flex-flow: row nowrap;
            }

                .login-page button.sign-in-google .sign-in-google-content .sign-in-google-icon {
                    margin-right: 12px;
                }

            .login-page button.sign-in-google:hover {
                background-color: rgb(250, 250, 250);
            }

            .login-page button.sign-in-google:focus {
                box-shadow: rgba(16, 24, 40, 0.05) 0px 1px 2px, rgb(242, 244, 247) 0px 0px 0px 4px;
            }

    .login-page .sign-up-wrapper {
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        align-items: start;
        flex-flow: row nowrap;
    }

        .login-page .sign-up-wrapper div {
            margin-right: 4px;
        }

            .login-page .sign-up-wrapper div p {
                margin-block: unset;
                font-family: Inter;
                font-style: normal;
                font-weight: 400;
                font-size: 14px;
                line-height: 20px;
            }

        .login-page .sign-up-wrapper a {
            color: rgb(246, 141, 46);
        }

            .login-page .sign-up-wrapper a p {
                color: #F68D2E;
                margin-block: unset;
                font-family: Inter;
                font-style: normal;
                font-weight: 700;
                font-size: 14px;
                line-height: 20px;
                color: rgb(246, 141, 46);
            }

/*--------error message-----------*/
.custom-error-message-container {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    align-items: start;
    flex-flow: row;
}

.custom-error-message-wrapper .alert-danger {
    background-color: rgb(255, 251, 250);
    border-color: rgb(253, 162, 155);
    color: rgb(180, 35, 24);
}

.custom-error-message-body {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    flex-flow: row;
    gap: 12px;
}

.custom-error-message-icon {
    width: 20px;
}

.custom-error-message-line {
    margin-block: unset;
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

/*--------custom page-----------*/

.custom-page {
    background-color: rgb(255, 255, 255);
    min-height: calc(100vh - 84px);
    margin: auto;
    display: flex;
    -webkit-box-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    align-items: center;
    flex-flow: column nowrap;
    width: 488px;
    padding: 110px 36px;
}

    .custom-page .header {
        margin-bottom: 48px;
    }

    .custom-page .title {
        display: flex;
        -webkit-box-pack: start;
        justify-content: start;
        -webkit-box-align: center;
        align-items: center;
        flex-flow: column nowrap;
        margin-bottom: 32px;
    }

        .custom-page .title div {
            margin-bottom: 12px;
        }

            .custom-page .title div h1 {
                color: #141414;
                font-family: Inter;
                font-style: normal;
                margin-block: unset;
                font-weight: 700;
                font-size: 30px;
                line-height: 38px;
            }

        .custom-page .title p {
            color: #737373;
            margin-block: unset;
            font-family: Inter;
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: rgb(115, 115, 115);
        }