/*Обнулення стилів*/
* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}



body {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    /* Значення у відсотках або в одиницях em */
    letter-spacing: 1.5px;
    /* Значення в пікселях */
    color: #0E1621;
    background-color: #EEFFF1;
    overflow-wrap: break-word;
    overflow: auto;


    /*	text-align: justify;*/
}

body::-webkit-scrollbar {
    width: 0em;
    /* Товщина смуги прокрутки */
}

body::-webkit-scrollbar-thumb {
    background-color: transparent;
    /* Колір смуги прокрутки */
}




.login__wrapper{

    width: 100%;
    height: 100vh;
    display: flex;

    justify-content: center;
    align-items: center;
}
.login{
    width: 100%;
    height: 80%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}




.block_img, .block_frm {
    overflow: hidden; /* Забезпечує приховування надлишкових елементів */
    transition: max-height 0.5s ease, opacity 0.5s ease;
    max-height: 0; /* Початковий стан - приховано */
    opacity: 0;
}

.block_img{
width: 200px;
height: auto;

}

.block_img img{
    width: 100%;
    
}



.block_frm {

  
  z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.form_scan {

    width: 400px;
    min-height: 80px;

    display: flex;
    justify-content: center;
    align-items: center;
}
.input_scan {
    border: solid 3px #00a43c;
    border-radius: 10px;
    padding: 5px;
    font-size: 16px;
    font-weight: 600;
    color:#00a43c;
    width: 60%;
}
.btn_scan {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
     border:none;
     background-color: transparent;
     cursor: pointer;
   
}
.img_scan {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.btn_scan .img_scan:hover{
    transform: scale(1.1);
}

.block_btn {
    cursor: pointer; /* Додатково для вказівника */
  
}

