body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to bottom, #ffeb3b, #ff9800);
    background-image: url('canary_parrot_wallpaper.png');
    background-size: cover;
    background-position: center;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
}

.settings-panel {
    width: 30%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.input-container {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #333;
}

input[type="range"] {
    width: 100%;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

.image-container {
    width: 65%;
    background-color: #fff;
    min-height: 500px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Modern bejelentkezési dizájn */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

/* Üveg effektus + fényhatások */
.login-box {
	
    background: rgba(255, 255, 255, 0.2); /* Üvegszerű áttetszőség */
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 100%;
    animation: fadeIn 1.5s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Neon hatás */
.login-box::before {
    content: "";
    position: absolute;
	 border-radius: 15px 200px;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 200, 0, 0.5), rgba(0, 150, 255, 0.5));
    z-index: -1;
    filter: blur(15px);
    opacity: 0.8;
}

/* Input mezők csoport ikonokkal */
.input-group {
    position: relative;
	 border-radius: 15px 200px;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* Ikon stílus */
.input-group i {
    position: absolute;
	 border-radius: 15px 200px;
    left: 15px;
    font-size: 18px;
    color: #ff9800;
}

/* Input mezők stílusa */
.input-group input {
    width: 100%;
    padding: 12px 40px; /* Több hely az ikonok miatt */
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    color: black;
    text-align: left;
}

/* Bejelentkezési gomb */
button.login-btn {
    padding: 12px 25px;
    background: linear-gradient(to right, #ff9800, #ffcc00);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
}

button.login-btn:hover {
    background: linear-gradient(to right, #ffcc00, #ff9800);
    transform: scale(1.1);
}

/* Animáció a megjelenéshez */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-820px);
    }
    to {
        opacity: 1;
        transform: translateY(10);
    }
}

/* Szövegek dizájnja */
h1 {
    font-size: 32px;
    color: white;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

h4, h5 {
    color: white;
    font-size: 14px;
    opacity: 0.8;
}
