body {
background: linear-gradient(to right, #1C1C1C, #4e4e4e);
font-family: Arial, sans-serif;
}

main {
	display: flex;
    justify-content: center;
    padding: 200px;
}

.error-message {
    color: firebrick;
    position: absolute;
    left: 650px;
    bottom: 360px;
    font-size: 18px;
    cursor: default;
}

.error-message2 {
    color: firebrick;
    position: absolute;
    left: 600px;
    bottom: 360px;
    font-size: 18px;
    cursor: default;
}

.form-conteiner {
    height: 400px;
    width: 550px;
    display: flex;
    background-color: grey;
    bottom: 150px;
    position: absolute;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 2px solid grey;
}

input[type="email"] {
    position: absolute;
    border: 1px solid #000000;
    border-radius: 5px;
    width: 250px;
    height: 30px;
    top: 62px;
    right: 150px;
    font-size: 15px;
}

input[type="password"] {
    position: absolute;
    border: 1px solid #000000;
    border-radius: 5px;
    width: 250px;
    height: 30px;
    top: 122px;
    right: 150px;
    font-size: 15px;
}

input[type="submit"] {
    position: absolute;
    top: 200px;
    left: 220px;
    font-size: 18px;
    padding: 12px 18px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    background-color: #007BFF;
    color: white;
}

input[type="submit"]:hover {
    background-color: #0056b3; /* Ciemniejszy kolor przy najechaniu */
}

.register-link {
    position: absolute;
    top: 314px;
    right: 70px;
    font-size: 17px;
    color: black;
}

.register-link:hover {
    color: white;
}

.text {
    position: absolute;
    top: 300px;
    left: 80px;
    color: black;
    cursor: default;
}

.logo {
    position: absolute;
    left: 560px;
    top: 50px;
    height: 100px;
    width: auto;
}

.forgot {
    position: absolute;
    color: black;
    text-decoration: none;
    font-size: 17px;
    bottom: 110px;
    left: 200px;
}

.forgot:hover {
    color: white;
}

.back {
    position: absolute;
    font-size: 18px;
    padding: 12px 18px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
}

.back:hover {
    background-color: #0056b3;
}