@font-face {
    font-family: 'Mulish';
    src: url('/fonts/Mulish.ttf') format('truetype');
}

:root {
    --header-height: 60px;
    --sidebar-width: 50px;
    --button-primary-bg-color: #45B8F9;
    --button-primary-bg-color-hover: #1792D7;
    --primary-bg-color: #FFFFFF;
    --text-primary-color: #FFFFFF;
    --secondary-border-color: #E8E4EC;
    --secondary-text-color: #776685;
    --input-field-bg-color: #F4F2F7;
    --text-primary-1-color: #323232;
    --error-color: #F04438;
    --error-bg-color: #FFFBFA;
}

* {
    font-family: 'Mulish', sans-serif;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

body {
    background-color: #FAFAFA;
    margin: 0 0 0 0;
    height: 100vh;
}

.label-1 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

label.label-1 {
    padding-left: 16px;
    color: #667085;
}

.container.centered {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    border-radius: 16px;
    width: 416px;
    /*border: 1px solid;*/
    /*border-color: var(--secondary-border-color);*/
    background-color: var(--primary-bg-color);
    padding: 32px;
    box-sizing: border-box;
}

.container.centered input, .container.centered button {
    width: 100%;
}

.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
}

.secondary-text {
    color: var(--secondary-text-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.btn.primary {
    background: var(--button-primary-bg-color);
    color: var(--text-primary-color);
    width: 200px;
    height: 50px;
    border-radius: 12px;
    gap: 10px;
    border: 1px var(--button-primary-bg-color);
    padding: 13px 16px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    /*margin-top: 24px;*/
}

.btn.primary:hover {
    background: var(--button-primary-bg-color-hover);
    border: 1px var(--button-primary-bg-color-hover);
    cursor: pointer;
}

input, input.secondary-text {
    background-color: var(--input-field-bg-color);
    border-radius: 12px;
    text-align: left;
    gap: 10px;
    padding: 13px 16px;
    border: 1px solid var(--input-field-bg-color);
    color: var(--text-primary-1-color);
    margin-bottom: 16px;
    box-sizing: border-box;
}

input:last-of-type {
    margin-bottom: 24px;
}

input::placeholder {
    color: var(--secondary-text-color);
}

input:focus::placeholder {
    color: transparent;
}

input:focus {
    border: 1px solid var(--button-primary-bg-color);
}

*:focus {
    outline: none;
}

.container.centered label {
    margin-bottom: 4px;
}

h2.form-title {
    color: var(--text-primary-1-color);
    font-weight: 900;
    font-size: 24px;
    line-height: 36px;
    margin-top: 0;
    margin-bottom: 16px;
}

.error {
    /*background-color: var(--error-bg-color);*/
    color: var(--error-color);
    margin-top: 16px;
}

/* Mobile */
@media screen and (min-width: 320px) and (max-width: 480px) {
    .container.centered {
        top: unset;
        left: unset;
        transform: unset;
        width: 100%;
        height: 100vh;
    }
}

/* Tablets */
@media screen and (min-width: 481px) and (max-width: 768px) {

}

/* Laptops */
@media screen and (min-width: 769px) and (max-width: 1024px) {

}

/* Desktops */
@media screen and (min-width: 1025px) and (max-width: 1200px) {

}

/* Larger screens */
@media screen and (min-width: 1201px) {

}
