@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

input[type="number"] {
    /* Убираем стрелки в Chrome, Edge, Safari */
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Дополнительно для Firefox */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    padding-top: 100px;
    background: #F7F7F7 !important;
}

.signin {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.signin form {
    display: flex;
    width: 95%;
    max-width: 500px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.signin form h2 {
    width: 100%;
    text-align: center;
    margin: 10px 0 0px 0;
}

.signin form p {
    width: 100%;
    text-align: center;
    color: red;
    margin-bottom: 15px;
}

.a_link {
    width: 100%;
    text-align: left;
    color: black;
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 5px;
}

.signin_img {
    width: 120px;
}

.signin_img img {
    width: 100%;
}

.signin_input {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 20px 0 0 0;
}

.signin_input input {
    width: 100%;
    border: none;
    outline: none;
    background: none;
    font-size: 16px;
    border-bottom: 1px solid green;
    padding: 5px 50px 5px 5px;
}

.signin_input select {
    width: 100%;
    border: none;
    outline: none;
    background: none;
    font-size: 16px;
    border-bottom: 1px solid green;
    padding: 5px 50px 5px 5px;
}

.signin_input_eyes {
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    font-size: 20px;
}

.signin button {
    display: flex;
    width: auto;
    justify-content: center;
    align-items: center;
    text-align: center;

    border: none;
    outline: none;
    background: none;

    background: green;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px 30px;
    font-size: 16px;
    margin-top: 10px;
}

.signin_input_eyes_open {
    display: none;
}