* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Montserrat, sans-serif;
	background-color: #f5b759;
}
        .error-message {
            margin-right: 10px;
        }
        #okno {
            display: flex;
            align-items: center;
            justify-content: center;			
            width: 300px;
            height: auto;
            text-align: center;
            padding: 10px;
            border-radius: 10px;
            color: white; /* Червоний колір тексту */
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: rgba(182, 10, 10, 0.7);/* Прозорий білий фон */
            z-index: 100; /* Високий індекс, щоб було над іншими елементами */
        }
        .close {
            display: inline-block;
            padding: 0 12px;
            margin: 10px;
			color: white;
            text-decoration: none;
            cursor: pointer;
        }
        .close:hover {
            background: #7d7c7c; /* Змінив колір при наведенні */
        }
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.background-image {
  width: 100%;
  height: 100%;
  background-image: url('background-image.jpg'); /* Шлях до вашого фото */
  background-size: cover;
  background-blend-mode: overlay;
  background-position: center center;
  opacity: 0.3; /* Прозорість фонового зображення */
}

a {
    color: #7c9ab7;
    font-weight: bold;
    text-decoration: none;
}

p {
    margin: 20px 50px;
}
.login {
    margin-top: 20px;
}


label {
    color: #ffffff;	
    margin: 0 50px;
}

form {
	background-color: #212121;
    display: flex;
    flex-direction: column;
    width: 400px;
	border-radius: 10px;
}

input {
    margin: 20px 50px;
    padding: 10px;
    border: unset;
    border-bottom: 2px solid #e3e3e3;
    outline: none;
	background: #494949;
	color: #ffffff;	
}

button {
	color: #ffffff;	
	margin: 20px 50px;
    padding: 10px;
    background: #494949;
    border: unset;
    cursor: pointer;
}

.msg {
    border: 2px solid #ffa908;
    border-radius: 3px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.logout {
    color: #b7625c;
}