.um-form{
    margin-top: 70px;
    padding: 15px;
        background: rgba(21, 21, 21, 0.65);
            /* halvány üveg hatás */
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        
            box-shadow:
                0 2px 6px rgba(0, 0, 0, 0.4),
                /* külső árnyék */
                inset 0 1px rgba(255, 255, 255, 0.15),
                inset 0 3px rgba(255, 255, 255, 0.1),
                inset 0 12px 20px rgba(255, 255, 255, 0.15),
                inset 0 20px 25px rgba(0, 0, 0, 0.2);
        
            backdrop-filter: blur(3px);
            background-clip: padding-box;
}



/* Gombok stílusa */
.um-button {
    background-color: #ADFF2F;
    color: #151515;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.um-button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #d4ff2f;
}