@font-face {
    font-family: 'Russo One';
    src: url('../fonts/RussoOne-Regular.ttf') format('ttf'),
    url("../fonts/russo-one.woff") format("woff"),
    url("../fonts/russo-one.woff2") format("woff2");
;
    /* Дополнительные опции настройки шрифта (например, font-weight, font-style) */
}

@font-face {
    font-family: 'OCR';
    src: url('../fonts/ocrabeckerrus_lat.otf') format('opentype')
;
    /* Дополнительные опции настройки шрифта (например, font-weight, font-style) */
}

* {
    box-sizing: border-box;
}

nav {
    background-color: #000000;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 14px;
    background: #000000;
    font-family: "OCR", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 80px;
}

.container {
    max-width: 100vw; /* Ширина контейнера равная видимой части экрана */
    max-height: 100vh; /* Высота контейнера равная видимой части экрана */
    overflow: hidden; /* Скрыть прокрутку контейнера */
}

h1 {
    font-family: "OCR", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 65px;
    line-height: 80px;
    color: #005C74;
}

h4 {
    font-family: "OCR", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 33px;
    color: #005C74;
}

.w-50 {
    width: auto !important;
}

.centered {
    display: flex;
    justify-content: center;
    flex-direction: column;
    /*height: 100vh; !* Высота контейнера на весь экран *!*/
    margin-right: auto;
    margin-left: auto;
}

.video-upload {
    position: relative;
    width: 570px;
    height: 65px;
    border-radius: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    background: linear-gradient(to right, rgba(0, 191, 212, 1), rgba(0, 91, 151, 1));
}

.upload-label {
    opacity: 1;
    background: black;
    border-radius: 100px;
    width: 550px;
    height: 55px;
    text-align: center;
}

#video-input {
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

label {
    bottom: 20px;
    width: 100%;
    text-align: center;
}

#file-label {
    cursor: pointer;
    font-family: "OCR", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    color: #005C74;
    margin-bottom: 0;
    text-align: center;
}

.file-form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Отображение элементов в столбец */
    margin-bottom: 20px;
}

.login-form .d-block {
    display: block;
    margin-bottom: 10px; /* Отступ между полями */
}

.item {
    display: inline-block;
}

.baseBtn {
    background-image: linear-gradient(to right, rgba(0, 191, 212, 1), rgba(0, 91, 151, 1));
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 20px;
    display: block;
}

.baseBtn:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.baseText {
    font-family: "OCR", sans-serif;
    font-style: normal;
    color: #005C74;
}

.baseBtn:disabled {
    color: #fff;
    background-color: #073946;
    border-color: #073946;
}

.baseBtn:hover:not(:disabled) {
    color: #fff;
    background-color: #0084A7;
    border-color: #0084A7;
}

.canvas-item {
    align-self: center;
    margin-top: 20px;
}

.login-input, .login-input:active, .login-input:focus {
    padding: 5px; /* Отступы внутри поля ввода */
    width: 215px; /* Ширина поля ввода */
    height: 40px;
    background: #000000;
    color: white;
    font-family: "OCR", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
}

.inline-input-block {
    max-width: 250px;
    position: relative;
    background: linear-gradient(to right, rgba(0, 191, 212, 1), rgba(0, 91, 151, 1));
    padding: 3px;
    border-radius: 20px;
}

input[type="text"], input[type="password"] {
    border: none; /* Убирает обводку */
    border-radius: 20px;
    outline: none; /* Убирает обводку при фокусе */
}


.login-label {
    font-family: "OCR", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    background: linear-gradient(to right, rgba(0, 191, 212, 1), rgba(0, 91, 151, 1));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    min-width: 220px;
    text-align: center;
}

.text-label {
    font-family: "OCR", sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: 30px;
    background: linear-gradient(to right, rgba(0, 191, 212, 1), rgba(0, 91, 151, 1));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    min-width: 220px;
    text-align: center;
    margin-top: 75px;
}


#status {
    font-family: "OCR", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #005C74;
    margin-right: 10px;
}
