/* A teljes bejelentkezési kártya */
#main {
    width: 420px;
    margin: 60px auto;
    margin-top: 100px;
    padding: 35px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    box-sizing: border-box;
    text-align: center;
}

/* Cím */
#login-h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

/* Form elemek egymás alatt */
#main form label {
    display: block;
    width: 100%;
    margin-bottom: 18px;
    text-align: left;
    font-weight: 500;
}

/* LEKEREKÍTETT INPUT MEZŐK */
/* LEKEREKÍTETT INPUT MEZŐK */
#main input[type="text"],
#main input[type="password"],
#main input[name="name"],
#name {
    width: 100%;
    height: 40px;
    padding: 0 14px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 1rem;
    box-sizing: border-box;
    margin-top: 8px;
    transition: 0.3s;
}


#main input:focus {
    border-color: #FDA500;
    outline: none;
}

/* Jelszó ikon pozicionálása */
.password-wrapper {
    position: relative;
    width: 100%;
    margin-top: 8px;
}

.password-wrapper input {
    width: 100%;
}

.toggle-password-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.2rem;
    color: #777;
}

/* LEKEREKÍTETT BEJELENTKEZÉS GOMB */
#main input[type="submit"] {
    width: 40%;
    height: 40px;
    border-radius: 25px;
    color: white;
    background-color: black;
    border: none;
    font-size: 1rem;
    cursor: pointer;

    display: block;
    margin: 25px auto 0 auto;
    transition: 0.3s;
}

#main input[type="submit"]:hover {
    background-color: #333;
}

/* Linkek */
#main a {
    color: #FDA500;
    text-decoration: none;
}

#main a:hover {
    text-decoration: underline;
}

/* Hibaüzenetek */
#errors, #success {
    margin-top: 25px;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.95rem;
}

#errors {
    background: #ffe5e5;
    color: #b30000;
}

#success {
    background: #e5ffe5;
    color: #008000;
}

/* Mobilbarát */
@media (max-width: 480px) {
    #main {
        width: 90%;
        padding: 25px;
    }

    #main input[type="text"],
    #main input[type="password"],
    .password-wrapper {
        width: 100%;
    }

    #main input[type="submit"] {
        width: 60%;
    }
}
