body {
    background-image: url("bg.webp");
    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: #1c3f6d;
    color: #f8f8f8;
    border: none;
    border-radius: 5px; /* Lekerekített sarkok */
    font-size: 14px;
    cursor: pointer;
}

a {
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3)
  }

  button {
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }

@media screen and (max-width: 600px) {
    body {
        background-image: url("background.jpg"); /* Cseréld le "hatterkep.jpg"-re a kép elérési útját */
        background-size: cover;
        background-repeat: no-repeat;
        font-family: sans-serif;
        height: 100vh; /* Állítsd be a teljes viewport magasságát */
    }
    
    .container_login {
        text-align: center;
        width: 80%;
        margin: 0 auto;
        margin-top: 40%;
        padding: 20px;
        background-color: rgba(68, 68, 68, 0.6); /* Blure-olt háttér */
        border: 1px solid #ccc;
        border-radius: 10px; /* Lekerekített sarkok */
        box-shadow: 10px 10px; /* Árnyék */
    }
    
    h1 {
        text-align: center;
        color: #e0e0e0;
    }
    
    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: #3db487;
        color: #f8f8f8;
        border: none;
        border-radius: 5px; /* Lekerekített sarkok */
        font-size: 14px;
        cursor: pointer;
    }
    
    button:hover {
        background-color: #329c74;
    }
}