@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&family=Poppins:wght@500;700&display=swap');

@font-face {
    font-family: 'Sequel100Black-65';
    src: url('../fonts/Sequel100Black-65/Sequel100Black-65.eot');
    src: url('../fonts/Sequel100Black-65/Sequel100Black-65.woff') format('woff'), url('../fonts/Sequel100Black-65/Sequel100Black-65.ttf') format('truetype'), url('../fonts/Sequel100Black-65/Sequel100Black-65.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sequel100Black-75';
    src: url('../fonts/Sequel100Black-75/Sequel100Black-75.eot');
    src: url('../fonts/Sequel100Black-75/Sequel100Black-75.woff') format('woff'), url('../fonts/Sequel100Black-75/Sequel100Black-75.ttf') format('truetype'), url('../fonts/Sequel100Black-75/Sequel100Black-75.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat-Light';
    src: url('../fonts/Montserrat/Montserrat-Light.eot');
    src: url('../fonts/Montserrat/Montserrat-Light.woff') format('woff'), url('../fonts/Montserrat/Montserrat-Light.ttf') format('truetype'), url('../fonts/Montserrat/Montserrat-Light.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-brand-blue: #526fff;
    --color-border: #d9d9d9;
    --color-border-active: #526fff;
    --color-background: #ededed;
    --color-background-active: #a9b7ff;
    --color-gray: #626471;
    --color-error: #ff4d4f;
}

html {
    font-size: 12px;
}

@media (min-width: 1300px) {
    html {
        font-size: 14px;
    }
}

body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    display: flex;
    flex-direction: column;
}

a {
    font-family: "Poppins";
    font-size: 1em;
    color: var(--color-brand-blue);
    text-decoration: none;
}
    a:hover {
        text-decoration: underline;
    }

button {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    text-decoration: none;
    color: #fff;
    border: 2px solid transparent;
    box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
    background: var(--color-brand-blue);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
    outline: 0;
    font-family: "Poppins";
    padding: 0.5em 2em;
}

    button:hover {
        border: 2px solid rgba(0, 0, 0, 0.2);
        color: var(--color-background-active);
    }

    button a {
        color: #ffffff;
        text-decoration: none;
        font-family: "Poppins";
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    button a:hover {
        text-decoration: none;
    }

input[type=text], input[type=password] {
    box-sizing: border-box;
    font-variant: tabular-nums;
    list-style: none;
    font-feature-settings: 'tnum', "tnum";
    position: relative;
    display: inline-block;
    min-width: 0;
    padding: 4px 11px;
    color: rgba(0, 0, 0, 0.85);
    background-color: #fff;
    background-image: none;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    transition: all 0.1s;
    font-size: 1.2rem;
    line-height: 1.15;
    margin: 0;
    height: 50px;
    width: 100%;
    font-family: "Montserrat";
}

    input[type=text]:hover, input[type=password]:hover {
        border-color: var(--color-border-active);
    }

    input[type=text]:focus, input[type=password]:focus {
        border-color: var(--color-border-active);
        border-width: 3px;
        outline: 0;
    }

h2 {
    font-family: 'Sequel100Black-65';
    font-weight: normal;
}
