body {
    background-image: url("bg-red.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh; /* Állítsd be a teljes viewport magasságát */
    font-family: sans-serif;
    overflow: hidden;
}

.container_login {
    text-align: center;
    width: 20%;
    margin: 0 auto;
    margin-top: 10%;
    padding: 20px;
    background-color: rgba(110, 110, 110, 0.6); /* Blure-olt háttér */
    border: 1px solid #ccc;
    border-radius: 10px; /* Lekerekített sarkok */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

h1 {
    text-align: center;
    color: #ffffff;
}

input[type="text"],
input[type="password"] {
    background-color: rgba(12, 12, 12, 0.5);
    color: #fff;
    text-align: center;
    margin: 0 auto;
    width: 80%;
    padding: 5px;
    margin-bottom: 10px;
    font-size: 20px;
    border-radius: 5px; /* Lekerekített sarkok */
}

button {
    margin: 0 auto;
    width: 60%;
    padding: 10px;
    background-color: rgb(177, 33, 33);
    color: #f8f8f8;
    border: none;
    border-radius: 5px; /* Lekerekített sarkok */
    font-size: 14px;
    cursor: pointer;
}

button:hover {
    background-color: rgb(131, 24, 24);
}

@media screen and (max-width: 770px) {    
    .container_login {
        width: 80%;
        margin-top: 40%;
    }
    
    input[type="text"],
    input[type="password"] {
        width: 80%;
    }
    
    button {
        width: 60%;
    }
    
    button:hover {
        background-color: #329c74;
    }
}