* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;}
html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    overflow-y: visible;
    scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;}
ul, ol {list-style: none;}
a {
    text-decoration: none;
    color: inherit;}
img {
    max-width: 100%;
    height: auto;}
table {
    border-collapse: collapse;
    width: 100%;}
button {
    border: none;
    background: none;
    cursor: pointer;}

@font-face {
    font-family: "Natasha";
    src: url("../assets/fonts/Natasha/Natasha.woff") format("woff2"),
    url("../assets/fonts/Natasha/Natasha.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

:root {
    --white: #ffffff;
    --black: #000000;

    --gray: #cccccc;
    --orange: #E55137;
    --red_usssr: #b02d23;
    --red_light: #c93227;
}

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

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
}

.login-container h2 {
    font-size: 2.3em;
    font-family: 'Natasha', Arial, sans-serif;
    color: var(--black);
    margin-bottom: 12px;
}

.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray);
    border-radius: 5px;
 font-size: 16px;
}

.submit-button {
    width: 100%;
    padding: 10px;
    background-color: var(--black);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-button:hover {
    background-color: rgb(205,19,45);
}

.login-container p {
    margin-top: 10px;
    text-align: center;
}

.login-container a {
    color: var(--blue);
    text-decoration: none;
}

.login-container a:hover {
    text-decoration: underline;
}
.text-center {
  text-align: center;
}
.mt-20 {
  margin-top: 20px;
}
.mt-10 {
  margin-top: 10px;
}
.fs-11 {
  font-size: 1.1em;
}
.fs-12 {
  font-size: 1.2em;
}
.color-red {
  color: #c93227;
}
.d-ib {
  display: inline-block;
}
.login-error {
  color: red;
  margin-top: 10px;
}