﻿/***** placeholder *****/
/* do not group these rules */
::-webkit-input-placeholder {
    font-family: var(--theme-font-family) !important;
    color: var(--theme-color-gray) !important;
    opacity: 1 !important;
    font-size: 10px !important;
    text-rendering: initial !important;
}

:-moz-placeholder {
    /* FF 4-18 */
    font-family: var(--theme-font-family) !important;
    color: var(--theme-color-gray) !important;
    opacity: 1 !important;
    font-size: 10px !important;
    text-rendering: initial !important;
}

::-moz-placeholder {
    /* FF 19+ */
    font-family: var(--theme-font-family) !important;
    color: var(--theme-color-gray) !important;
    opacity: 1 !important;
    font-size: 10px !important;
    text-rendering: initial !important;
}

:-ms-input-placeholder {
    /* IE 10+ */
    font-family: var(--theme-font-family) !important;
    color: var(--theme-color-gray) !important;
    opacity: 1 !important;
    font-size: 10px !important;
    text-rendering: initial !important;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    font-family: var(--theme-font-family) !important;
    color: var(--theme-color-gray) !important;
    opacity: 1 !important;
    font-size: 10px !important;
    text-rendering: initial !important;
}

*::placeholder {
    /* modern browser */
    font-family: var(--theme-font-family) !important;
    color: var(--theme-color-gray) !important;
    opacity: 1 !important;
    font-size: 10px !important;
    text-rendering: geometricPrecision !important;
}

/***** end placeholder *****/

.server-error {
    font-size: 11px;
    padding: 0.7rem 1rem;
    margin: 20px 0 0 0;
}

.auth-component-wrapper {
    font-family: var(--theme-font-family);
    min-height: 100vh;
    height: 100%;
    padding: 15px;
    background: #eee url("../images/bg.png") repeat;
    display: grid;
}

    .auth-component-wrapper .container-fluid {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .auth-component-wrapper .container-fluid .card {
            border: none;
            border-radius: 30px;
            background-color: rgba(255, 255, 255, 0.95);
            flex: 1 1 auto;
            height: 100%;
            box-shadow: none;
            margin-bottom: 0;
        }

            .auth-component-wrapper .container-fluid .card .card-body {
                background-color: transparent;
                display: flex;
                align-items: center;
                justify-content: center;
                overflow: hidden;
            }

                .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper {
                    min-width: 220px;
                    width: 100%;
                    max-width: 360px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    row-gap: 30px;
                }

                    .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .logo {
                        width: 150px;
                    }

                    .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form {
                        /*width: 100%;*/
                        border: 3px solid var(--theme-color-blue);
                        border-radius: 28px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        padding: 8px;
                    }

                        .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-header {
                            padding-bottom: 10px;
                        }

                            .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-header .form-title {
                                font-size: 18px;
                                font-weight: 500;
                                color: var(--theme-color-blue);
                                margin-bottom: 0;
                            }

                            .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-header .form-subtitle {
                                font-size: 11px;
                                font-weight: 500;
                                color: rgba(var(--theme-color-gray), 0.9);
                                line-height: 1.5;
                                margin-top: 10px;
                                margin-bottom: 0;
                                text-wrap: wrap;
                            }

                        .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-group {
                            margin: 10px 0;
                        }

                            .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-group label {
                                font-size: 11px;
                                font-weight: 500;
                                color: var(--theme-color-blue);
                                margin-bottom: 0;
                                padding-left: 6px;
                            }

                                .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-group label sup {
                                    color: red;
                                    font-size: 10px;
                                    vertical-align: sub;
                                }

                                .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-group label span {
                                    font-size: 11px;
                                    font-weight: 500;
                                    color: var(--theme-color-blue);
                                }

                            .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-group .form-control {
                                border-radius: 8px;
                                border: 1px solid var(--theme-color-blue);
                                font-size: 12px;
                                color: var(--theme-color-gray);
                                height: 40px;
                                outline: none;
                                box-shadow: none;
                            }

                                .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-group .form-control.password-control {
                                    display: flex;
                                    align-items: center;
                                    column-gap: 5px;
                                }

                                    .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-group .form-control.password-control input {
                                        font-size: 12px;
                                        color: var(--theme-color-gray);
                                        height: 100%;
                                        border: none;
                                        flex: 1 1 auto;
                                        outline: none;
                                        box-shadow: none;
                                    }

                                    .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-group .form-control.password-control button {
                                        background-color: transparent;
                                        border: none;
                                        padding: 0;
                                        outline: none;
                                    }

                            .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-group .error-message {
                                color: red;
                                font-size: 9px;
                                padding-left: 6px;
                                line-height: 1.6;
                            }

                        .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-link {
                            text-align: center;
                            margin: 20px 0;
                        }

                            .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-link a {
                                font-size: 12px;
                                font-weight: 500;
                                color: var(--theme-color-blue);
                                text-decoration: none;
                                letter-spacing: inherit;
                            }

                                .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-link a:hover {
                                    text-decoration: underline;
                                    cursor: pointer;
                                }

                            .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-link.active a {
                                text-decoration: underline;
                                text-transform: uppercase;
                                font-size: 14px;
                                font-weight: 500;
                            }

                        .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .form-buttons {
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                            gap: 20px;
                            margin-top: 30px;
                        }

                        .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .btn {
                            transform: translateZ(0);
                            backface-visibility: hidden;
                            -webkit-font-smoothing: subpixel-antialiased;
                            font-size: 12px;
                            font-weight: 500;
                            border: 1px solid;
                            scale: 1;
                            transition: all 0.15s ease;
                            flex: 1 1 auto;
                        }

                            .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .btn:hover {
                                scale: 0.96;
                                display: initial;
                            }

                        .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .btn-block {
                            display: block;
                        }

                        .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .btn-blue {
                            border-color: var(--theme-color-blue);
                            background-color: var(--theme-color-blue);
                            color: #fff;
                            border-radius: 0.5rem;
                        }

                        .auth-component-wrapper .container-fluid .card .card-body .auth-form-wrapper .auth-form .btn-clear {
                            border-color: var(--theme-color-blue);
                            background-color: #fff;
                            color: var(--theme-color-blue);
                            border-radius: 0.5rem;
                        }
