﻿body {
    background: #001724;
    height: 100vh;
    font-family: 'Visby CF Regular';
    font-style: normal;
    margin: 0;
}

a {
    color: #0E76D8;
    text-decoration: none;
}

@font-face {
    font-family: 'Visby CF Bold';
    src: url("../fonts/Visby/VisbyCFExtraBold.woff2");
}
@font-face {
    font-family: 'Visby CF Regular';
    src: url("../fonts/Visby/VisbyCFRegular.woff2");
}

@font-face {
    font-family: 'Visby CF Light';
    src: url("../fonts/Visby/VisbyCFLight.woff2");
}

.alert {
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    width: calc(100% - 20px);
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 56px);
}

    .container .container-body {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 25px;
        background: #FFFFFF;
        box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.16), 0px 4px 8px rgba(0, 0, 0, 0.08);
        border-radius: 24px;
        max-width: 500px;
    }

        .container .container-body .card-title label {
            height: 24px;
            font-style: normal;
            font-weight: 900;
            font-size: 20px;
            color: #000000;
            flex: none;
            order: 0;
            align-self: stretch;
            flex-grow: 0;
        }

        .container .container-body .card-subtitle label {
            height: 24px;
            font-weight: 600;
            font-size: 14px;
            line-height: 150%;
            letter-spacing: 0.25px;
            color: #000000;
        }

        .container .container-body hr {
            width: 100%;
            border: 1px solid #DEE0E3;
        }

        .container .container-body .container-body-footer {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            flex-direction: row;
            align-items: center;
            width: 100%;
        }

            .container .container-body .container-body-footer a {
                padding-left: 10px;
                color: #666D7A;
            }

            .container .container-body .container-body-footer div {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 155px;
                height: 40px;
                background: #F45255;
                border-radius: 100px;
                cursor: pointer;
            }

                .container .container-body .container-body-footer div label {
                    cursor: pointer;
                    color: #FFFFFF;
                }

            .container .container-body .container-body-footer label {
                font-weight: 800;
                font-size: 14px;
                line-height: 120%;
                display: flex;
                align-items: center;
                text-align: center;
                letter-spacing: 0.5px;
                color: #666D7A;
                margin-bottom: 0;
                cursor: pointer;
            }

        .container .container-body input[type=text] {
            box-sizing: border-box;
            padding: 0px 16px;
            height: 48px;
            background: #FFFFFF;
            border-radius: 4px;
            border: 1px solid #A9B0BC;
            width: 100%;
        }

        .container .container-body input[readonly] {
            background: #EBEBE4;
        }

        .container .container-body input[type=password] {
            box-sizing: border-box;
            padding: 0px 16px;
            height: 48px;
            background: #FFFFFF;
            border-radius: 4px;
            border: 1px solid #A9B0BC;
            width: 100%;
        }

        .container .container-body select {
            box-sizing: border-box;
            padding: 0px 16px;
            height: 48px;
            background: #FFFFFF;
            border-radius: 4px;
            border: 1px solid #A9B0BC;
            width: 100%;
        }
