﻿
@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins-ExtraLight.ttf) format("truetype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
}

:root {
    --main-transition: .15s all ease-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ol,
ul {
    margin: revert;
    padding: revert;
}

html,
body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0,0,0,0.65);
}

button {
    font-family: 'Poppins', sans-serif;
}

input {
    font-family: 'Poppins', sans-serif;
    border-radius: 0.5rem;
    border: 1px solid #0000001a;
    padding: 1rem;
    transition: var(--main-transition);
    line-height: 1rem;
    align-content: center;
}

    input:focus,
    input:focus {
        border: 1px solid #80bdff;
        box-shadow: 0 0 0 0.2rem #007bff40;
        outline: none;
    }

    input::placeholder {
        letter-spacing: 0;
        color: #00000073;
    }

h1 {
    font-size: 2rem;
    line-height: 2rem;
    color: rgba(0,0,0,0.85);
    font-weight: 600;
    width: fit-content;
}

h2 {
    color: rgba(0,0,0,0.85);
    font-size: 1.5rem;
    font-weight: 500;
}

.layout-container {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.layout-left {
    width: 50%;
    height: 100%;
    position: fixed;
    background: conic-gradient( from 180deg at 50% 50%, #3366cc 0deg, rgba(255, 255, 255, 0.2) 144deg, #3366cc 360deg );
    padding: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: black;
}

.layout-right {
    display: flex;
    margin-left: 50%;
    justify-content: center;
    padding: 2rem;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.logo-desktop {
    display: flex;
    gap: 1rem;
    align-items: center;
}

    .logo-desktop img {
        width: 40px;
        height: 40px;
    }

.login-container {
    display: flex;
    flex-direction: column;
    min-width: 500px;
    max-width: 500px;
    justify-content: center;
    gap: 2rem;
/*    padding: 2rem;*/
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.block-info {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .input-group label {
        font-size: 1.25rem;
        color: rgba(0,0,0,0.85);
        font-weight: 500;
    }

.password-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .input-check input[type="checkbox"] {
        width: 1.25rem;
        height: 1.25rem;
        border-radius: 0.25rem;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: 1px solid rgba(0,0,0,0.2);
        background-color: white;
        margin: 0;
        cursor: pointer;
        padding: 0;
    }

        .input-check input[type="checkbox"]:checked {
            background-color: #165ef0;
            position: relative;
            border: 1px solid rgba(0,0,0,0);
        }

            .input-check input[type="checkbox"]:checked::before {
                content: "✓";
                position: absolute;
                color: white;
                font-size: 0.75rem; /* 12px */
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

    .input-check label {
        font-size: 1rem;
        line-height: 1rem;
        font-weight: 400;
    }

.remember-me {
    margin-top: 0.5rem;
}

.main-button {
    background: #165ef0;
    padding: 1rem;
    color: white;
    border-radius: 0.5rem;
    border: none;
    line-height: 100%;
    cursor: pointer;
    transition: all ease-in .15s;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}

    .main-button:hover {
        background: #0951E1;
    }

a.main-button {
    text-decoration: none;
}

.danger {
    background-color: #DC3545;
}

    .danger:hover {
        background-color: #D61325;
    }

.login-button-group {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
}

    .login-button-group p {
        width: fit-content;
    }

.basic-container {
    display: flex;
    flex-direction: column;
    min-width: 500px;
    max-width: 500px;
    gap: 2rem;
}

.form-info {
    background-color: #E5F2F8;
    padding: 1rem;
    border-radius: 0.5rem;
}

.codes-container {
    display: flex;
    justify-content: center;
}

.codes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    color: red;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,0.1);
}

.manage-account-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.manage-account-item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.manage-account-item-info-status {
    font-size: 1rem;
    line-height: 1rem;
    padding: 0.5rem;
    color: #4B6053;
    background-color: #E1F2E8;
    border-radius: 0.25rem;
}

.alert.alert-danger {
    background-color: #FFF2F2;
    padding: 1rem;
    border-radius: 0.5rem;
}

    .alert.alert-danger .alert-heading {
        color: #A82E1B;
    }

    .alert.alert-danger hr {
        display: none;
    }

    .alert.alert-danger .danger{
        background-color: unset;
    }

    .alert.alert-danger .validation-summary-errors ul {
        margin: 0;
        padding: 0;
        padding-left: 1.5rem;
        list-style: disc;
        /*list-style-position: inside;*/
        color: #A82E1B;
    }

    .alert.alert-danger .validation-summary-errors ul li{
        margin-top: 0.25rem;
    }